More abilities, implemented support for form inheritance
All checks were successful
Build / Build (push) Successful in 49s

This commit is contained in:
2025-06-13 12:24:03 +02:00
parent 6d71de375e
commit 8363b955af
16 changed files with 504 additions and 11 deletions

View File

@@ -369,17 +369,34 @@
"misty_surge": {
"effect": "misty_surge"
},
"mold_breaker": {},
"moody": {},
"motor_drive": {},
"moxie": {},
"multiscale": {},
"multitype": {
"canBeChanged": false
"mold_breaker": {
"effect": "mold_breaker"
},
"moody": {
"effect": "moody"
},
"motor_drive": {
"effect": "motor_drive"
},
"moxie": {
"effect": "moxie"
},
"multiscale": {
"effect": "multiscale"
},
"multitype": {
"canBeChanged": false,
"effect": "multitype"
},
"mummy": {
"effect": "mummy"
},
"natural_cure": {
"effect": "natural_cure"
},
"no_guard": {
"effect": "no_guard"
},
"mummy": {},
"natural_cure": {},
"no_guard": {},
"normalize": {},
"oblivious": {},
"overcoat": {},

View File

@@ -4450,6 +4450,108 @@
],
"formeChange": []
}
},
"arceus_fighting": {
"inheritFrom": "default",
"types": [
"fighting"
]
},
"arceus_flying": {
"inheritFrom": "default",
"types": [
"flying"
]
},
"arceus_bug": {
"inheritFrom": "default",
"types": [
"bug"
]
},
"arceus_dark": {
"inheritFrom": "default",
"types": [
"dark"
]
},
"arceus_dragon": {
"inheritFrom": "default",
"types": [
"dragon"
]
},
"arceus_electric": {
"inheritFrom": "default",
"types": [
"electric"
]
},
"arceus_fairy": {
"inheritFrom": "default",
"types": [
"fairy"
]
},
"arceus_fire": {
"inheritFrom": "default",
"types": [
"fire"
]
},
"arceus_ghost": {
"inheritFrom": "default",
"types": [
"ghost"
]
},
"arceus_grass": {
"inheritFrom": "default",
"types": [
"grass"
]
},
"arceus_ground": {
"inheritFrom": "default",
"types": [
"ground"
]
},
"arceus_ice": {
"inheritFrom": "default",
"types": [
"ice"
]
},
"arceus_poison": {
"inheritFrom": "default",
"types": [
"poison"
]
},
"arceus_psychic": {
"inheritFrom": "default",
"types": [
"psychic"
]
},
"arceus_rock": {
"inheritFrom": "default",
"types": [
"rock"
]
},
"arceus_steel": {
"inheritFrom": "default",
"types": [
"steel"
]
},
"arceus_water": {
"inheritFrom": "default",
"types": [
"water"
]
}
},
"evolutions": []