:if:<pokemon.count><6
:then
@Text.show(Enter a Pokedex number!)
@screen.input(<System.random(1,729)>,1,Pokedex-Number,3)
@Storage.set(integer,pokenum,<System.lastinput>)
@Text.show(Enter a Level!)
@screen.input(<System.random(1,100)>,1,Level,3)
@Storage.set(integer,pokelevel,<System.lastinput>)
@Text.show(What is your catch method?)
@options.show(Default,Custom)
:when:Default
@Storage.set(string,pokecatchm,random reason)
:when:Custom
@screen.input(random reason,0,Catchmethod,16)
@Storage.set(string,pokecatchm,<System.lastinput>)
:endwhen
@Text.show(What is your catch ball?)
@options.show(Default/Master Ball,Ultra Ball,Great Ball,Poke Ball,Friend Ball,Moon Ball,Love Ball,Premier Ball)
:when:Default/Master Ball
@Storage.set(integer,pokecatchb,1)
:when:Ultra Ball
@Storage.set(integer,pokecatchb,2)
:when:Great Ball
@Storage.set(integer,pokecatchb,4)
:when:Poke Ball
@Storage.set(integer,pokecatchb,5)
:when:Friend Ball
@Storage.set(integer,pokecatchb,164)
:when:Moon Ball
@Storage.set(integer,pokecatchb,165)
:when:Love Ball
@Storage.set(integer,pokecatchb,166)
:when:Premier Ball
@Storage.set(integer,pokecatchb,3)
:endwhen
@Text.show(Enter a Catchlocation!)
@screen.input(the world that never was,0,Catch Location,16)
@Storage.set(string,pokecatchl,<System.lastinput>)
@Text.show(Is it an egg?)
@options.show(Yes,No)
:when:Yes
@Storage.set(boolean,pokeisegg,1)
:when:No
@Storage.set(boolean,pokeisegg,0)
:endwhen
@Text.show(The pokemon was catched by ...)
@options.show(Default/myself,Custom)
:when:default/myself
@Storage.set(string,pokecatcher,<player.name>)
:when:Custom
@screen.input(Lance,0,Playername,16)
@Storage.set(string,pokecatcher,<System.lastinput>)
:endwhen
@Pokemon.add(<Storage.get(integer,pokenum)>,<Storage.get(integer,pokelevel)>,<Storage.get(string,pokecatchm)>,<Storage.get(integer,pokecatchb)>,<Storage.get(string,pokecatchl)>,<Storage.get(boolean,pokeisegg)>,<Storage.get(string,pokecatcher)>)
@Pokemon.cry(<Storage.get(integer,pokenum)>)
:endscript
:else
@text.show(You have no room~right now.*Come back when you've~made room.)
:endif
:endscript