mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-06 06:01:46 +00:00
unused moves tutor (probably won't compile, but the gist of it is there)
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -6,7 +6,7 @@
|
|||||||
module Settings
|
module Settings
|
||||||
# The version of your game. It has to adhere to the MAJOR.MINOR.PATCH format.
|
# The version of your game. It has to adhere to the MAJOR.MINOR.PATCH format.
|
||||||
GAME_VERSION = '5.0.0'
|
GAME_VERSION = '5.0.0'
|
||||||
GAME_VERSION_NUMBER = "5.0.30 - beta"
|
GAME_VERSION_NUMBER = "5.0.31 - beta"
|
||||||
|
|
||||||
POKERADAR_LIGHT_ANIMATION_RED_ID = 17
|
POKERADAR_LIGHT_ANIMATION_RED_ID = 17
|
||||||
POKERADAR_LIGHT_ANIMATION_GREEN_ID = 18
|
POKERADAR_LIGHT_ANIMATION_GREEN_ID = 18
|
||||||
|
|||||||
@@ -196,7 +196,7 @@ def isFusionForced?
|
|||||||
end
|
end
|
||||||
|
|
||||||
def isFusedEncounter
|
def isFusedEncounter
|
||||||
return false if !SWITCH_FUSED_WILD_POKEMON[35]
|
#return false if !$game_switches[SWITCH_FUSED_WILD_POKEMON]
|
||||||
return false if $game_switches[SWITCH_RANDOM_WILD_TO_FUSION]
|
return false if $game_switches[SWITCH_RANDOM_WILD_TO_FUSION]
|
||||||
return true if isFusionForced?()
|
return true if isFusionForced?()
|
||||||
chance = pbGet(VAR_WILD_FUSION_RATE) == 0 ? 5 : pbGet(VAR_WILD_FUSION_RATE)
|
chance = pbGet(VAR_WILD_FUSION_RATE) == 0 ? 5 : pbGet(VAR_WILD_FUSION_RATE)
|
||||||
|
|||||||
@@ -46,15 +46,14 @@ module PropertyMixin
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
class Option
|
class Option
|
||||||
attr_reader :description
|
attr_reader :description
|
||||||
|
|
||||||
def initialize(description)
|
def initialize(description)
|
||||||
@description = description
|
@description = description
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
#===============================================================================
|
#===============================================================================
|
||||||
#
|
#
|
||||||
#===============================================================================
|
#===============================================================================
|
||||||
@@ -215,6 +214,7 @@ class Window_PokemonOption < Window_DrawableCommand
|
|||||||
def nameBaseColor=(value)
|
def nameBaseColor=(value)
|
||||||
@nameBaseColor = value
|
@nameBaseColor = value
|
||||||
end
|
end
|
||||||
|
|
||||||
def nameShadowColor=(value)
|
def nameShadowColor=(value)
|
||||||
@nameShadowColor = value
|
@nameShadowColor = value
|
||||||
end
|
end
|
||||||
@@ -381,7 +381,6 @@ class PokemonOption_Scene
|
|||||||
return optionsWindow
|
return optionsWindow
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
def updateDescription(index)
|
def updateDescription(index)
|
||||||
index = 0 if !index
|
index = 0 if !index
|
||||||
begin
|
begin
|
||||||
@@ -454,7 +453,6 @@ class PokemonOption_Scene
|
|||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
if $game_switches
|
if $game_switches
|
||||||
options <<
|
options <<
|
||||||
EnumOption.new(_INTL("Autosave"), [_INTL("On"), _INTL("Off")],
|
EnumOption.new(_INTL("Autosave"), [_INTL("On"), _INTL("Off")],
|
||||||
@@ -495,7 +493,6 @@ class PokemonOption_Scene
|
|||||||
"Display move animations in battles"
|
"Display move animations in battles"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
options << EnumOption.new(_INTL("Battle Style"), [_INTL("Switch"), _INTL("Set")],
|
options << EnumOption.new(_INTL("Battle Style"), [_INTL("Switch"), _INTL("Set")],
|
||||||
proc { $PokemonSystem.battlestyle },
|
proc { $PokemonSystem.battlestyle },
|
||||||
proc { |value| $PokemonSystem.battlestyle = value },
|
proc { |value| $PokemonSystem.battlestyle = value },
|
||||||
@@ -530,13 +527,14 @@ class PokemonOption_Scene
|
|||||||
["Enter text by selecting letters on the screen",
|
["Enter text by selecting letters on the screen",
|
||||||
"Enter text by typing on the keyboard"]
|
"Enter text by typing on the keyboard"]
|
||||||
)
|
)
|
||||||
|
if $game_variables
|
||||||
options << EnumOption.new(_INTL("Fusion icons"), [_INTL("Combined"), _INTL("DNA")],
|
options << EnumOption.new(_INTL("Fusion icons"), [_INTL("Combined"), _INTL("DNA")],
|
||||||
proc { $game_variables[VAR_FUSION_ICON_STYLE] },
|
proc { $game_variables[VAR_FUSION_ICON_STYLE] },
|
||||||
proc { |value| $game_variables[VAR_FUSION_ICON_STYLE] = value },
|
proc { |value| $game_variables[VAR_FUSION_ICON_STYLE] = value },
|
||||||
["Combines both Pokémon's party icons",
|
["Combines both Pokémon's party icons",
|
||||||
"Uses the same party icon for all fusions"]
|
"Uses the same party icon for all fusions"]
|
||||||
)
|
)
|
||||||
|
end
|
||||||
options << EnumOption.new(_INTL("Screen Size"), [_INTL("S"), _INTL("M"), _INTL("L"), _INTL("XL"), _INTL("Full")],
|
options << EnumOption.new(_INTL("Screen Size"), [_INTL("S"), _INTL("M"), _INTL("L"), _INTL("XL"), _INTL("Full")],
|
||||||
proc { [$PokemonSystem.screensize, 4].min },
|
proc { [$PokemonSystem.screensize, 4].min },
|
||||||
proc { |value|
|
proc { |value|
|
||||||
@@ -555,7 +553,6 @@ class PokemonOption_Scene
|
|||||||
return options
|
return options
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
def pbAddOnOptions(options)
|
def pbAddOnOptions(options)
|
||||||
return options
|
return options
|
||||||
end
|
end
|
||||||
@@ -570,7 +567,6 @@ class PokemonOption_Scene
|
|||||||
@autosave_menu = false
|
@autosave_menu = false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
def pbOptions
|
def pbOptions
|
||||||
oldSystemSkin = $PokemonSystem.frame # Menu
|
oldSystemSkin = $PokemonSystem.frame # Menu
|
||||||
oldTextSkin = $PokemonSystem.textskin # Speech
|
oldTextSkin = $PokemonSystem.textskin # Speech
|
||||||
|
|||||||
@@ -16,6 +16,10 @@ class MoveRelearner_Scene
|
|||||||
pbUpdateSpriteHash(@sprites)
|
pbUpdateSpriteHash(@sprites)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def set_moves(moves_list)
|
||||||
|
@moves = moves_list
|
||||||
|
end
|
||||||
|
|
||||||
def pbStartScene(pokemon,moves)
|
def pbStartScene(pokemon,moves)
|
||||||
@pokemon=pokemon
|
@pokemon=pokemon
|
||||||
@moves=moves
|
@moves=moves
|
||||||
|
|||||||
@@ -74,8 +74,8 @@ def Kernel.pbShuffleDex(range = 50, type = 0)
|
|||||||
#type 0: BST
|
#type 0: BST
|
||||||
#type 1: full random
|
#type 1: full random
|
||||||
range = 1 if range == 0
|
range = 1 if range == 0
|
||||||
only_customs = $game_switches[SWITCH_RANDOM_WILD_ONLY_CUSTOMS]
|
|
||||||
should_include_fusions = $game_switches[SWITCH_RANDOM_WILD_TO_FUSION]
|
should_include_fusions = $game_switches[SWITCH_RANDOM_WILD_TO_FUSION]
|
||||||
|
only_customs = $game_switches[SWITCH_RANDOM_WILD_ONLY_CUSTOMS] && should_include_fusions
|
||||||
|
|
||||||
# create hash
|
# create hash
|
||||||
pokemon_list = only_customs ? getCustomSpeciesList() : get_pokemon_list(should_include_fusions)
|
pokemon_list = only_customs ? getCustomSpeciesList() : get_pokemon_list(should_include_fusions)
|
||||||
|
|||||||
@@ -629,7 +629,7 @@ class PokemonFusionScene
|
|||||||
end
|
end
|
||||||
|
|
||||||
#unused. was meant for super splicers, but too broken
|
#unused. was meant for super splicers, but too broken
|
||||||
def setHighestFusionIvs()«
|
def setHighestFusionIvs()
|
||||||
@pokemon1.iv[:HP] = pickHighestOfTwoValues(@pokemon1.iv[:HP], @pokemon2.iv[:HP])
|
@pokemon1.iv[:HP] = pickHighestOfTwoValues(@pokemon1.iv[:HP], @pokemon2.iv[:HP])
|
||||||
@pokemon1.iv[:ATTACK] = pickHighestOfTwoValues(@pokemon1.iv[:ATTACK], @pokemon2.iv[:ATTACK])
|
@pokemon1.iv[:ATTACK] = pickHighestOfTwoValues(@pokemon1.iv[:ATTACK], @pokemon2.iv[:ATTACK])
|
||||||
@pokemon1.iv[:DEFENSE] = pickHighestOfTwoValues(@pokemon1.iv[:DEFENSE], @pokemon2.iv[:DEFENSE])
|
@pokemon1.iv[:DEFENSE] = pickHighestOfTwoValues(@pokemon1.iv[:DEFENSE], @pokemon2.iv[:DEFENSE])
|
||||||
|
|||||||
126
Data/Scripts/050_AddOns/FusionMoveTutor.rb
Normal file
126
Data/Scripts/050_AddOns/FusionMoveTutor.rb
Normal file
@@ -0,0 +1,126 @@
|
|||||||
|
def pbSpecialTutor(pokemon)
|
||||||
|
retval = true
|
||||||
|
tutorUtil = FusionTutorService.new(pokemon)
|
||||||
|
pbFadeOutIn {
|
||||||
|
scene = MoveRelearner_Scene.new
|
||||||
|
scene.set_moves(tutorUtil.getCompatibleMove)
|
||||||
|
|
||||||
|
screen = MoveRelearnerScreen.new(scene)
|
||||||
|
retval = screen.pbStartScreen(pkmn)
|
||||||
|
}
|
||||||
|
return retval
|
||||||
|
end
|
||||||
|
|
||||||
|
class FusionTutorService
|
||||||
|
|
||||||
|
def initialize(pokemon)
|
||||||
|
@pokemon = pokemon
|
||||||
|
end
|
||||||
|
|
||||||
|
def getCompatibleMoves(pokemon)
|
||||||
|
compatibleMoves = []
|
||||||
|
#normal moves
|
||||||
|
compatibleMoves << :ATTACKORDER if is_fusion_of([:BEEDRILL])
|
||||||
|
compatibleMoves << :FIRSTIMPRESSION if is_fusion_of([:SCYTHER, :SCIZOR, :PINSIR, :FARFETCHD, :TRAPINCH, :VIBRAVA, :FLYGON, :KABUTOPS, :ARMALDO])
|
||||||
|
compatibleMoves << :POLLENPUFF if is_fusion_of([:BUTTERFREE, :CELEBI, :VILEPLUME, :PARASECT, :BRELOOM])
|
||||||
|
compatibleMoves << :LUNGE if is_fusion_of([:SPINARAK, :ARIADOS, :JOLTIK, :GALVANTULA, :VENOMOTH, :VOLCARONA, :PINSIR, :PARASECT, :LEDIAN, :DODUO, :DODRIO, :STANTLER])
|
||||||
|
compatibleMoves << :DEFENDORDER if is_fusion_of([:BEEDRILL])
|
||||||
|
compatibleMoves << :HEALORDER if is_fusion_of([:BEEDRILL])
|
||||||
|
compatibleMoves << :POWDER if is_fusion_of([:BUTTERFREE, :VENOMOTH, :VOLCARONA, :PARASECT, :BRELOOM])
|
||||||
|
compatibleMoves << :TAILGLOW if is_fusion_of([:MAREEP, :FLAFFY, :AMPHAROS, :LANTURN, :ZEKROM, :RESHIRAM])
|
||||||
|
compatibleMoves << :DARKESTLARIAT if is_fusion_of([:SNORLAX, :REGIGIGAS, :POLIWRATH, :MACHAMP, :ELECTIVIRE, :DUSKNOIR, :SWAMPERT, :KROOKODILE, :GOLURK])
|
||||||
|
compatibleMoves << :PARTINGSHOT if is_fusion_of([:MEOWTH, :PERSIAN, :SANDILE, :KROKOROK, :KROOKODILE, :UMBREON])
|
||||||
|
compatibleMoves << :TOPSYTURVY if is_fusion_of([:HITMONTOP, :WOBBUFFET])
|
||||||
|
compatibleMoves << :CLANGINGSCALES if is_fusion_of([:EKANS, :ARBOK, :GARCHOMP, :FLYGON, :HAXORUS])
|
||||||
|
|
||||||
|
compatibleMoves << :ZINGZAP if is_fusion_of([:PICHU, :PIKACHU, :RAICHU, :VOLTORB, :ELECTRODE]) || (is_fusion_of([:SANDSLASH, :GOLEM]) && hasType(:ELECTRIC))
|
||||||
|
compatibleMoves << :PARABOLICCHARGE if is_fusion_of([:PICHU, :PIKACHU, :RAICHU, :MAGNEMITE, :MAGNETON, :MAGNEZONE, :MAREEP, :FLAAFY, :AMPHAROS, :ELEKID, :ELECTABUZZ, :ELECTIVIRE, :ZAPDOS,
|
||||||
|
:CHINCHOU, :LANTERN, :RAIKOU, :KLINK, :KLANK, :KLINKLANG, :ROTOM, :STUNFISK])
|
||||||
|
|
||||||
|
compatibleMoves << :ELECTRIFY if is_fusion_of([:KLINK, :KLANK, :KLINKLANG]) || hasType(:ELECTRIC)
|
||||||
|
compatibleMoves << :AROMATICMIST if is_fusion_of([:WEEZING, :BULBASAUR, :IVYSAUR, :VENUSAUR, :CHIKORITA, :BAYLEEF, :MEGANIUM, :GLOOM, :VILEPLUME, :BELLOSSOM, :ROSELIA, :ROSERADE])
|
||||||
|
compatibleMoves << :FLORALHEALING if is_fusion_of([:SUNFLORA, :BELLOSSOM, :ROSELIA, :ROSERADE])
|
||||||
|
compatibleMoves << :FLYINGPRESS if is_fusion_of([:TORCHIC, :COMBUSKEN, :BLAZIKEN, :FARFETCHD, :HERACROSS]) || (hasType(:FLYING) && hasType(:FIGHTING))
|
||||||
|
compatibleMoves << :SECRETSWORD if is_fusion_of([:HONEDGE, :DOUBLADE, :AEGISLASH, :GALLADE, :FARFETCHD, :ABSOL, :BISHARP])
|
||||||
|
compatibleMoves << :MATBLOCK if is_fusion_of([:MACHOP, :MACHOKE, :MACHAMP, :TYROGUE, :HITMONLEE, :HITMONCHAMP, :HITMONTOP])
|
||||||
|
compatibleMoves << :MINDBLOWN if is_fusion_of([:VOLTORB, :ELECTRODE, :EXEGGUTOR])
|
||||||
|
compatibleMoves << :SHELLTRAP if is_fusion_of([:MAGCARGO, :FORRETRESS])
|
||||||
|
compatibleMoves << :HEATCRASH if is_fusion_of([:BLAZIKEN, :RESHIRAM, :GROUDON, :CHARIZARD, :GOLURK, :REGIGIGAS, :RHYDON, :RHYPERIOR, :SNORLAX])
|
||||||
|
compatibleMoves << :SHADOWBONE if is_fusion_of([:MAROWAK]) && hasType(:GHOST)
|
||||||
|
compatibleMoves << :SPIRITSHACKLE if is_fusion_of([:BANETTE, :SPIRITOMB, :DUSKNOIR, :SHEDINJA, :COFAGRIGUS])
|
||||||
|
compatibleMoves << :TRICKORTREAT if (hasType(:GRASS) && hasType(:GHOST)) || is_fusion_of([:GASTLY, :HAUNTER, :GENGAR, :MIMIKYU, :ZORUA, :ZOROARK])
|
||||||
|
compatibleMoves << :TROPKICK if is_fusion_of([:HITMONLEE, :HITMONTOP, :ROSERADE]) || (hasType(:GRASS) && hasType(:FIGHTING))
|
||||||
|
compatibleMoves << :NEEDLEARM if is_fusion_of([:FERROTHORN])
|
||||||
|
compatibleMoves << :FORESTSCURSE if (hasType(:GRASS) && hasType(:GHOST))
|
||||||
|
compatibleMoves << :SPIKYSHIELD if is_fusion_of([:FERROSEED, :FERROTHORN]) || (is_fusion_of([:SANDSLASH, :JOLTEON, :CLOYSTER]) && hasType(:GRASS))
|
||||||
|
compatibleMoves << :STRENGTHSAP if is_fusion_of([:ODDISH, :GLOOM, :VILEPLUME, :BELLOSSOM, :HOPPIP, :SKIPLOOM, :JUMPLUFF, :BELLSPROUT, :WEEPINBELL, :VICTREEBEL, :PARAS, :PARASECT, :DRIFTBLIM, :BRELOOM])
|
||||||
|
compatibleMoves << :SHOREUP if is_fusion_of([:GRIMER, :MUK]) && hasType(:GROUND)
|
||||||
|
compatibleMoves << :ICEHAMMER if (canLearnMove(:CRABHAMMER) || canLearnMove(:GRASSHAMMER)) && hasType(:ICE)
|
||||||
|
compatibleMoves << :MULTIATTACK if is_fusion_of([:ARCEUS, :MEW, :GENESECT])
|
||||||
|
compatibleMoves << :REVELATIONDANCE if is_fusion_of([:KECLEON, :BELLOSSOM, :CLEFAIRY, :CLEFABLE, :CLEFFA])
|
||||||
|
compatibleMoves << :BANEFULBUNKER if is_fusion_of([:TENTACOOL, :TENTACRUEL, :NIDORINA, :NIDORINO, :NIDOQUEEN, :NIDOKING, :GRIMER, :MUK, :QWILFISH])
|
||||||
|
compatibleMoves << :INSTRUCT if is_fusion_of([:CHIMCHAR, :MONFERNO, :INFERNAPE, :KADABRA, :ALAKAZAM, :SLOWKING])
|
||||||
|
compatibleMoves << :PSYCHICTERRAIN if hasType(:PSYCHIC)
|
||||||
|
compatibleMoves << :GRASSYTERRAIN if hasType(:GRASS)
|
||||||
|
compatibleMoves << :MISTYTERRAIN if hasType(:FAIRY)
|
||||||
|
compatibleMoves << :SPEEDSWAP if is_fusion_of([:PIKACHU, :RAICHU, :ABRA, :KADABRA, :ALAKAZAM, :PORYGON, :PORYGON2, :PORYGONZ, :MEWTWO, :MEW, :JOLTIK, :GALVANTULA])
|
||||||
|
compatibleMoves << :ACCELEROCK if is_fusion_of([:AERODACTYL, :KABUTOPS, :ANORITH, :ARMALDO])
|
||||||
|
compatibleMoves << :ANCHORSHOT if (is_fusion_of([:EMPOLEON, :STEELIX, :BELDUM, :METANG, :METAGROSS,:KLINK,:KLINKLANG,:KLANK,:ARON,:LAIRON,:AGGRON]) && hasType(:WATER)) || (is_fusion_of([:LAPRAS,:WAILORD,:KYOGRE]) && hasType(:STEEL))
|
||||||
|
compatibleMoves << :SPARKLINGARIA if (is_fusion_of([:JYNX, :JIGGLYPUFF, :WIGGLYTUFF]) && hasType(:WATER)) || is_fusion_of(:LAPRAS)
|
||||||
|
compatibleMoves << :WATERSHURIKEN if is_fusion_of([:NINJASK, :LUCARIO, :ZOROARK, :BISHARP]) && hasType(:WATER)
|
||||||
|
|
||||||
|
#legendary moves (only available after a certain trigger, maybe a different npc)
|
||||||
|
compatibleMoves << :HYPERSPACEFURY if is_fusion_of([:GIRATINA, :PALKIA, :DIALGA, :ARCEUS])
|
||||||
|
compatibleMoves << :COREENFORCER if is_fusion_of([:GIRATINA, :PALKIA, :DIALGA, :RAYQUAZA])
|
||||||
|
|
||||||
|
compatibleMoves << :PLASMAFISTS if is_fusion_of([:ELECTABUZZ, :ELECTIVIRE, :ZEKROM]) || (is_fusion_of([:ROTOM]) && canLearnMove(:THUNDERPUNCH))
|
||||||
|
|
||||||
|
compatibleMoves << :LIGHTOFRUIN if is_fusion_of([:ARCEUS, :MEW, :CELEBI, :JIRACHI])
|
||||||
|
compatibleMoves << :FLEURCANNON if is_fusion_of([:GARDEVOIR, :GALLADE, :SYLVEON, :WIGGLYTUFF])
|
||||||
|
compatibleMoves << :NATURESMADNESS if is_fusion_of([:CELEBI, :KYOGRE, :GROUDON, :ABSOL])
|
||||||
|
compatibleMoves << :GEOMANCY if is_fusion_of([:CELEBI])
|
||||||
|
compatibleMoves << :VCREATE if is_fusion_of([:ENTEI, :HOOH, :TYPHLOSION])
|
||||||
|
compatibleMoves << :MAGMASTORM if is_fusion_of([:MAGCARGO, :TYPHLOSION, :MAGMORTAR, :MAGMAR, :ENTEI, :GROUDON]) || canLearnMove(:ERUPTION)
|
||||||
|
compatibleMoves << :SEARINGSHOT if is_fusion_of([:MAGMORTAR])
|
||||||
|
compatibleMoves << :OBLIVIONWING if is_fusion_of([:MURKROW, :HONCHKROW]) || (hasType(:DARK) && hasType(:FLYING))
|
||||||
|
compatibleMoves << :MOONGEISTBEAM if (is_fusion_of([:CLEFFA, :CLEFAIRY, :CLEFABLE]) && hasType(:DARK)) || is_fusion_of([:DARKRAI, :MISDREAVUS, :MISMAGIUS])
|
||||||
|
compatibleMoves << :SPECTRALTHIEF if is_fusion_of([:HAUNTER, :GENGAR, :BANETTE, :GIRATINA, :HONEDGE, :DOUBLADE, :AEGISLASH])
|
||||||
|
compatibleMoves << :SEEDFLARE if is_fusion_of([:JUMPLUFF, :SUNFLORA])
|
||||||
|
compatibleMoves << :LANDSWRATH if is_fusion_of([:GROUDON])
|
||||||
|
compatibleMoves << :THOUSANDARROWS if is_fusion_of([:SANDSLASH, :JOLTEON, :FERROTHORN] && hasType(:GROUND))
|
||||||
|
compatibleMoves << :THOUSANDWAVES if is_fusion_of([:STUNFISK, :QUAGSIRE, :SWAMPERT])
|
||||||
|
compatibleMoves << :FREEZESHOCK if is_fusion_of([:KYUREM, :ARTICUNO]) && hasType(:ELECTRIC)
|
||||||
|
compatibleMoves << :ICEBURN if is_fusion_of([:KYUREM, :ARTICUNO]) && hasType(:FIRE)
|
||||||
|
compatibleMoves << :RELICSONG if is_fusion_of([:JYNX, :LAPRAS, :JIGGLYPUFF, :WIGGLYTUFF, :MISDREAVUS, :MISMAGIUS])
|
||||||
|
compatibleMoves << :HAPPYHOUR if is_fusion_of([:MEOWTH, :JIRACHI, :DELIBIRD, :MUNCHLAX, :SNORLAX, :PIKACHU, :RAICHU])
|
||||||
|
compatibleMoves << :HOLDHANDS if is_fusion_of([:CHARMANDER, :BULBASAUR, :SQUIRTLE, :PIKACHU, :TOGEPI])
|
||||||
|
compatibleMoves << :PRISMATICLASER if is_fusion_of([:LANTURN, :AMPHAROS, :HOOH, :DEOXYS, :MEWTWO, :MEW]) && hasType(:PSYCHIC)
|
||||||
|
compatibleMoves << :PHOTONGEYSER if is_fusion_of([:LANTURN, :AMPHAROS, :HOOH, :MEW, :MEWTWO, :DEOXYS]) && hasType(:PSYCHIC)
|
||||||
|
compatibleMoves << :LUNARDANCE if is_fusion_of([:CLEFAIRY, :CLEFABLE, :STARYU, :STARMIE])
|
||||||
|
compatibleMoves << :DIAMONDSTORM if ((hasType(:FAIRY) && hasType(:ROCK)) || (hasType(:ROCK) && hasType(:STEEL))) || is_fusion_of([:DIALGA, :STEELIX])
|
||||||
|
compatibleMoves << :SUNSTEELSTRIKE if is_fusion_of([:CHARIZARD, :VOLCARONA, :FLAREON, :NINETALES, :ENTEI, :HOOH, :RAPIDASH]) && hasType(:STEEL)
|
||||||
|
compatibleMoves << :DOUBLEIRONBASH if canLearnMove(:DOUBLESLAP) && hasType(:STEEL)
|
||||||
|
compatibleMoves << :STEAMERUPTION if canLearnMove(:ERUPTION) && hasType(:WATER)
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
def is_fusion_of(pokemonList)
|
||||||
|
is_species = false
|
||||||
|
for fusionPokemon in pokemonList
|
||||||
|
@pokemon.isFusionOf(fusionPokemon)
|
||||||
|
end
|
||||||
|
return is_species
|
||||||
|
end
|
||||||
|
|
||||||
|
def hasType(type)
|
||||||
|
return @pokemon.hasType?(type)
|
||||||
|
end
|
||||||
|
|
||||||
|
def canLearnMove(move)
|
||||||
|
return @pokemon.compatible_with_move?(move)
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Binary file not shown.
75270
PBS/encounters.txt
75270
PBS/encounters.txt
File diff suppressed because it is too large
Load Diff
5378
PBS/trainers.txt
5378
PBS/trainers.txt
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user