This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2011-07-18 15:00:31

TornFusion
Scratcher
Registered: 2010-09-03
Posts: 1000+

I got the LeafTornado Deck!

I got the Lead Tornade deck for Pokemon TCG!

big_smile

BTW,

I made a batch that searches out pointless things that run on my Laptop, it always runs and if it finds something useless it terminates/murders a process!

Offline

 

#2 2011-07-18 15:01:25

bananaman114
Scratcher
Registered: 2010-03-15
Posts: 1000+

Re: I got the LeafTornado Deck!

That's cool
I have no clue what that is though, mind explaining?  big_smile


the sun still shines

Offline

 

#3 2011-07-18 15:15:10

AnimeCreatorArtist
Scratcher
Registered: 2010-05-25
Posts: 1000+

Re: I got the LeafTornado Deck!

I'm saving money and don't buy Pokemon cards anymore, but I literally have thousands of older ones.


http://images2.wikia.nocookie.net/__cb20121209020158/adventuretimewithfinnandjake/images/9/93/Prismo.png
I'm basically honorary nasty. N-n-n-n-nasty jazz

Offline

 

#4 2011-07-18 16:05:38

TornFusion
Scratcher
Registered: 2010-09-03
Posts: 1000+

Re: I got the LeafTornado Deck!

bananaman114 wrote:

That's cool
I have no clue what that is though, mind explaining?  big_smile

http://assets.pokemon.com/assets/cms/img/tcg/boosters/bw1_green_tornado_box.png

Assortment of Pokemon cards. i bought it as I'm keeping up with Pokemon and will enter the TCG Championships 2012. BRING IT ONNN!!!!

Offline

 

#5 2011-07-19 18:16:42

poemon1
Scratcher
Registered: 2011-01-12
Posts: 500+

Re: I got the LeafTornado Deck!

i made a batch file whos that pokemon game

Code:

@echo off
:MAIN
cls
echo.
echo Welcome to WHOS THAT POKEMON game.
color 04
echo.
echo To start the game, type a and press ENTER.
color 04
echo To see instructions for the game, type b and press 
ENTER.
color 04
echo To quit, type c and press ENTER.
color 04
set /p input=COMMAND?
if %input%==a goto GAME
if %input%==b goto INST
if %input%==c exit
:INST
type INST.txt
echo.
echo.
echo To start the game, type A and press ENTER.
color 04
echo To return to the main screen, type B and press ENTER.
color 04
echo To quit, type C and press ENTER.
color 04
set /p input=COMMAND?
if %input%==a goto GAME
if %input%==b goto MAIN
if %input%==c exit
:GAME
echo what is pikachus bio
color 04
echo a. mouse pokemon
color 04
echo b. thunder pokemon
color 04
echo c. lightning pokemon
color 04
echo d. legendary pokemon
color 04
set /p input=ANSWER?
if %input%==a goto 2
goto WRONG
:WRONG
echo Sorry, that is incorrect. Press any key to return to the main screen.
color 04
pause
goto MAIN
:2
echo how many pokemon are there in the sinnoh region?
color 04
echo a. 145
color 04
echo b. 511
color 04
echo c. 493
color 04
echo d. 100
color 04
set /p input=ANSWER?
if %input%==c goto 3
goto WRONG
:3
echo who is ash?
color 04
echo a. a girl from pallet town
color 04
echo b. a man from pallet town
color 04
echo c. a boy from pallet town
color 04
echo d. a lady from pallet town
color 04
set/p input=ANSWER?
if %input%==c goto WIN
goto WRONG
:WIN
type WIN.txt
echo.
echo.
set/p input=RETURN TO MAIN SCREEN(Y/N)?
if %input%==Y goto MAIN
if %input%==N exit
color 04

http://i47.tinypic.com/rrqe13.gif

Offline

 

#6 2011-07-19 18:32:16

AnimeCreatorArtist
Scratcher
Registered: 2010-05-25
Posts: 1000+

Re: I got the LeafTornado Deck!

poemon1 wrote:

i made a batch file whos that pokemon game

Code:

@echo off
:MAIN
cls
echo.
echo Welcome to WHOS THAT POKEMON game.
color 04
echo.
echo To start the game, type a and press ENTER.
color 04
echo To see instructions for the game, type b and press 
ENTER.
color 04
echo To quit, type c and press ENTER.
color 04
set /p input=COMMAND?
if %input%==a goto GAME
if %input%==b goto INST
if %input%==c exit
:INST
type INST.txt
echo.
echo.
echo To start the game, type A and press ENTER.
color 04
echo To return to the main screen, type B and press ENTER.
color 04
echo To quit, type C and press ENTER.
color 04
set /p input=COMMAND?
if %input%==a goto GAME
if %input%==b goto MAIN
if %input%==c exit
:GAME
echo what is pikachus bio
color 04
echo a. mouse pokemon
color 04
echo b. thunder pokemon
color 04
echo c. lightning pokemon
color 04
echo d. legendary pokemon
color 04
set /p input=ANSWER?
if %input%==a goto 2
goto WRONG
:WRONG
echo Sorry, that is incorrect. Press any key to return to the main screen.
color 04
pause
goto MAIN
:2
echo how many pokemon are there in the sinnoh region?
color 04
echo a. 145
color 04
echo b. 511
color 04
echo c. 493
color 04
echo d. 100
color 04
set /p input=ANSWER?
if %input%==c goto 3
goto WRONG
:3
echo who is ash?
color 04
echo a. a girl from pallet town
color 04
echo b. a man from pallet town
color 04
echo c. a boy from pallet town
color 04
echo d. a lady from pallet town
color 04
set/p input=ANSWER?
if %input%==c goto WIN
goto WRONG
:WIN
type WIN.txt
echo.
echo.
set/p input=RETURN TO MAIN SCREEN(Y/N)?
if %input%==Y goto MAIN
if %input%==N exit
color 04

ok.


http://images2.wikia.nocookie.net/__cb20121209020158/adventuretimewithfinnandjake/images/9/93/Prismo.png
I'm basically honorary nasty. N-n-n-n-nasty jazz

Offline

 

#7 2011-07-19 18:34:19

bananaman114
Scratcher
Registered: 2010-03-15
Posts: 1000+

Re: I got the LeafTornado Deck!

TornFusion wrote:

bananaman114 wrote:

That's cool
I have no clue what that is though, mind explaining?  big_smile

http://assets.pokemon.com/assets/cms/im … do_box.png

Assortment of Pokemon cards. i bought it as I'm keeping up with Pokemon and will enter the TCG Championships 2012. BRING IT ONNN!!!!

Cool  big_smile


the sun still shines

Offline

 

#8 2011-07-19 18:57:59

Onyxsbayne
Scratcher
Registered: 2010-11-21
Posts: 100+

Re: I got the LeafTornado Deck!

I have that one and the Nightfall deck, then took the grass cards and the dark cards and made dark grass and psychic steel decks


~Desktop Ideas Inc: Little doodles, BIG ideas
http://scratch.mit.edu/static/icons/buddy/663911_med.png?t=2010-11-19+11%3A07%3A34http://pokefarm.org/_ext/YDZT0GZD4.png

Offline

 

Board footer