answersLogoWhite

0

Either catch it on a GBA game and migrate it to Platinum (only works if you've beaten the Elite Four and seen every Pokemon in the Sinnoh dex) or use an AR. Hope this helps! :D

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What time does day turn to night in Pokemon plati num?

from 20.00 o'clock to 4 o'clock


What Pokemon is 093 in Pokemon plati num?

sudowoodo. Catch it on route 221. trade, use palpark, or evolve bonsly is you want.


How do you get the Pokémon spriteomb in Pokémon plati num?

Type your answer here... get the odd keystone put it in the weird mini volcan sorta thingy on route 209 and talk to 32 pplz underground then go back there. repeat if necessary


Which is the maximum num from 2 num find without using and?

max= a>b? a: b;


How do you find out how many digits are in integer using vbscript?

num=32767 MsgBox(len(num))


Program to find reverse of given number using pointers?

#include #include void main() { int rev num=0; while(num>0) { rev num=rev num*10+num%10; num=num%10; } return rev_num; } int main(); { int num=4562; printf("reverse of number is%d",reverse digit(num)); getch(); return o; }


Find the absolute value write a program of a no entered through the keyboard?

#include<stdio.h> #include<conio.h> int main () { int num; printf("enter the number"); scanf("%d",&num); if(num<0) num=(-1)*num; printf("absolute value=%d",num); getch(); return 0; }


Algorithm for to find sum of individual digits of a positive integer?

enter the number whose digits are to be added num is the given value num=0! k=num%10 sum=sum=k k=num/10 num=k print the sum of the digits


How do you write a c program to convert binary code to Gray code?

unsigned binary_to_gray (unsigned num) { return num ^ (num >> 1); } unsigned gray_to_binary (unsigned num) { /* note: assumes num is no more than 32-bits in length */ num ^= (num >> 16); num ^= (num >> 8); num ^= (num >> 4); num ^= (num >> 2); num ^= (num >> 1); return num ; }


How do you write a program in lisp to find if a number is prime or not?

(defun prime (num) (if (< 2 num) (do ((dividend 2 (1 + dividend)) (chk-to (sqrt num))) ((equal (rem num dividend) 0)) (when (<= chk-to dividend) (return t))) t))


In c language codes for find out reverse of any number?

//program to print the reverse of a number within 'int' range//#include#includevoid main(){int num,rem,sum=0;printf("\n Enter a number : ");scanf("%d",&num);printf("\n\n Reverse is : );while(num>0){if(num


Program to find the first prime numbers to 1000?

#include<iostream> // std::cout and std::endl #include<cmath> // std::sqrt // returns the next prime number after the given numberunsigned next_prime (unsigned num) { if (num<2) return 2; ++num; unsigned max_factor {std::sqrt{num) + 1U}; for (unsigned factor=2; factor<max_factor; ++factor) if (num%factor==0) return next_prime (num); return num; } // print prime numbers to 1000 int main() { unsigned num=0; while ((num=next_prime(num))<1000) std::cout<<num<<std::endl; }