- 6
- Posts
- 7
- Years
- Seen May 1, 2020
Hi, I've a problem with Alola Forms, they don't work, and I have problems with other forms too. I think that work only last forms added. Alola Forms and other forms were added to PBS:
I added this script too:
I have sprites and icons and when I stay on map 147 (for example), Geodude is Kanto Geodude, and I want Alola Geodude. I have Pokemon Essentials v.17.1.
Thanks, and sorry for my bad English.
EDIT: I solved this problem.
Spoiler:
#-------------------------------
[GEODUDE-1]
FormName=Geodude de Alola
Type1=ROCK
Type2=ELECTRIC
Abilities=MAGNETPULL,STURDY
HiddenAbility=GALVANIZE
Moves=1,TACKLE,1,DEFENSECURL,4,CHARGE,6,ROCKPOLISH,10,ROLLOUT,12,SPARK,16,ROCKTHROW,18,SMACKDOWN,22,THUNDERPUNCH,24,SELFDESTRUCT,28,STEALTHROCK,30,ROCKBLAST,34,DISCHARGE,36,EXPLOSION,40,DOUBLEEDGE,42,STONEEDGE
EggMoves=
StepsToHatch=4096
Weight=20.3
Color=Gray
Habitat=Cave
Pokedex=Its body is a magnetic stone. Iron sand attaches to the portions of its body that are particularly magnetic.
WildItemUncommon=CELLBATTERY
BattlerPlayerY=-26
BattlerEnemyY=-7
BattlerAltitude=0
[GEODUDE-1]
FormName=Geodude de Alola
Type1=ROCK
Type2=ELECTRIC
Abilities=MAGNETPULL,STURDY
HiddenAbility=GALVANIZE
Moves=1,TACKLE,1,DEFENSECURL,4,CHARGE,6,ROCKPOLISH,10,ROLLOUT,12,SPARK,16,ROCKTHROW,18,SMACKDOWN,22,THUNDERPUNCH,24,SELFDESTRUCT,28,STEALTHROCK,30,ROCKBLAST,34,DISCHARGE,36,EXPLOSION,40,DOUBLEEDGE,42,STONEEDGE
EggMoves=
StepsToHatch=4096
Weight=20.3
Color=Gray
Habitat=Cave
Pokedex=Its body is a magnetic stone. Iron sand attaches to the portions of its body that are particularly magnetic.
WildItemUncommon=CELLBATTERY
BattlerPlayerY=-26
BattlerEnemyY=-7
BattlerAltitude=0
I added this script too:
Spoiler:
MultipleForms.register(:GEODUDE,{
"getFormOnCreation"=>proc{|pokemon|
maps=[2,5,39,41,44,69,147,90] # Map IDs for second form
if $game_map && maps.include?($game_map.map_id)
next 1
else
next 0
end
}
})
MultipleForms.copy(:GEODUDE,:GRAVELER,:GOLEM)
"getFormOnCreation"=>proc{|pokemon|
maps=[2,5,39,41,44,69,147,90] # Map IDs for second form
if $game_map && maps.include?($game_map.map_id)
next 1
else
next 0
end
}
})
MultipleForms.copy(:GEODUDE,:GRAVELER,:GOLEM)
I have sprites and icons and when I stay on map 147 (for example), Geodude is Kanto Geodude, and I want Alola Geodude. I have Pokemon Essentials v.17.1.
Thanks, and sorry for my bad English.
EDIT: I solved this problem.
Last edited by a moderator: