Adds factory for Pokemon class

This commit is contained in:
infinitefusion
2023-08-05 11:03:37 -04:00
parent 178d61eec0
commit d304d223bd
33 changed files with 54 additions and 43 deletions

View File

@@ -0,0 +1,6 @@
class FusedPokemon < Pokemon
def initialize(species, level, owner = $Trainer, withMoves = true, recheck_form = true)
super
end
end