Pokemon | Δίχως Μέλλον | Παρελθοντικές εκδόσεις |
---|
0-6[]
Α' Προβολή: Office 2010 Starter
Β' Προβολή: Ντόρα ΔΥΟ/Qora 27 (Θέση 659)
Που ζει;[]
Εμφανίσεις του 0-6
Qora Qore XP
LTSC Ανταλλαγές, Debug, Αναβάθμιση ή Breeding
Stable Quora (3), Semuora (2), Xenuora (5) & Lilycone City
Beta Quora 3, Semuora 2, Xenuora 5 & Lilycone City
Dev και Canary Quora 3, Semuora 2, Xenuora 5, Netherworld Cave & Lilycone City
Άλλα
Pokémon Esmeralda Ανταλλαγές, Debug, Αναβάθμιση, Breeding ή Κορα Κορε
Στατιστικά[]
0-6[]
Stat | Range | ||||
---|---|---|---|---|---|
Στο Lv. 50 | Στο Lv. 100 | ||||
|
125 - 172 | 240 - 334 | |||
|
8 - 61 | 11 - 117 | |||
|
9 - 62 | 13 - 119 | |||
|
67 - 134 | 130 - 262 | |||
|
36 - 95 | 67 - 185 | |||
|
58 - 123 | 112 - 240 | |||
| |||||
|
Eternal 0-6[]
Stat | Range | ||||
---|---|---|---|---|---|
Στο Lv. 50 | Στο Lv. 100 | ||||
|
130 - 177 | 250 - 344 | |||
|
13 - 68 | 22 - 130 | |||
|
18 - 73 | 31 - 141 | |||
|
85 - 156 | 166 - 306 | |||
|
58 - 123 | 112 - 240 | |||
|
67 - 134 | 130 - 262 | |||
| |||||
|
PBS[]
Office 2010 Starter[]
HP: 120
MP: 90
Strength: 100
Dexterity: 140
Agility: 120
Intelligent: 90
Attack: 45
Defence: 50
Special Defence: 74
Evasion: 3
Expriecne: 70
Gold: 77
Actions: Attack, Fire, Swift
Qortex Essentials Oktw[]
Name=0-6
InternalName=OK
Type1=MOON
Type2=MIND
BaseStats=65,4,5,60,70,35
GenderRate=AlwaysMale
GrowthRate=Parabolic BaseEXP=66
EffortPoints=2,0,0,0,0,1 Rareness=255
Happiness=90
Abilities=CUTECHARM,HERALINA
HiddenAbility=BAIKARI
Moves=1,TACKLE,1,NIGHTMOON,2,SWORDSDANCE,5,DRAGONRAGE,12,SWIFT,18,SANDATTACK,25,GROWL,40,ROUND,40,SLAM,50,REST,60,MOONCROCKET,80,HEARTSTAMP Compatibility=Monster
StepsToHatch=1000
Height=0.6
Weight=2.5
Color=White
Kind=Card
Pokedex=0-6 can be found by using various trees. With Jellery, they can explore the entrie world by ourselves
FormNames=,Eternal Forme
WildItemCommon=JRSPLOVER
BattlerPlayerY=0
BattlerEnemyY=4
BattlerAltitude=0
Evolutions=BRONGRASS,Item,LEAFSTONE,FOXFIRE,Item,FIRESTONE,TURTLEWATER,Item,WATERSTONE,SMILE,Trained,200
Σκριπτ[]
MultipleForms.register(:OK,{
"type1"=>proc{|pokemon|
next if pokemon.form==0
next getID(PBTypes,:FAIRY) if pokemon.form==1 # Eternal
},
"type2"=>proc{|pokemon|
next if pokemon.form==0
next getID(PBTypes,:FIRE) if pokemon.form==1 # Eternal
},
"getBaseStats"=>proc{|pokemon|
next if pokemon.form==0
case pokemon.form
when 1; next [70,10,15,70,80,60] # Eternal
else; next
end
},
"getAbilityList"=>proc{|pokemon|
next if pokemon.form==0
next [[getID(PBAbilities,:INFILTRATOR),0],
[getID(PBAbilities,:ANTISHARPNESS),1],
[getID(PBAbilities,:FLOERYGIST),2],
[getID(PBAbilities,:SUPERCLEARBODY),3],
[getID(PBAbilities,:TOUGHCLAWS),4]] if pokemon.form==1 # Eternal
},
"wildHoldItems"=>proc{|pokemon|
next [getID(PBItems,:ABILITYCAPSULE),
getID(PBItems,:ABILITYCAPSULE),
getID(PBItems,:ABILITYCAPSULE)] if pokemon.form==1 # Eternal
next
},
"getMoveList"=>proc{|pokemon|
next if pokemon.form==0
movelist=[[1,:SWEETSODA],[1,:MOONBLAST],[5,:BURNUP],[5,:DRAININGKISS],
[10,:PSYCHOTRACK],[10,:EMBER],[20,:ATTRACT],[20,:FAIRYWIND],
[40,:PSYBEAM],[40,:INTIMIDATE],[80,:CASANOVA],[80,:LAVAPLUME],
[160,:SUNNYBLAST],[160,:MOONBLOVER],[320,:BURNUP],[320,:PSYCHOTRACK]] if pokemon.form==1 # Eternal
for i in movelist
i[1]=getConst(PBMoves,i[1])
end
next movelist
},
"dexEntry"=>proc{|pokemon|
next if pokemon.form==0
next _INTL("Who know the fact about the ancient 0-6? It was recently found on the MYSTERY ZONE building out an alternative world that wasn't found out yet.") if pokemon.form==1 # Eternal
},
"kind"=>proc{|pokemon|
next if pokemon.form==0
next _INTL("Distortion") if pokemon.form==1 # Eternal
},
"getFormOnCreation"=>proc{|pokemon|
maps=[112] # Map IDs for Eternal Forme
if $game_map && maps.include?($game_map.map_id)
next 1 # Eternal
else
next 0
end
}
})