Files
pokemon-battle-engine/example_data/charizard_moves.json
2025-08-14 03:48:42 +00:00

212 lines
4.8 KiB
JSON

{
"5": {
"id": 5,
"name": "mega-punch",
"type": "normal",
"power": 80,
"accuracy": 85,
"pp": 20,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": null,
"target": "selected-pokemon",
"description": "Inflicts regular damage with no additional effect."
},
"7": {
"id": 7,
"name": "fire-punch",
"type": "fire",
"power": 75,
"accuracy": 100,
"pp": 15,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": 10,
"target": "selected-pokemon",
"description": "Has a 10% chance to burn the target."
},
"9": {
"id": 9,
"name": "thunder-punch",
"type": "electric",
"power": 75,
"accuracy": 100,
"pp": 15,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": 10,
"target": "selected-pokemon",
"description": "Has a 10% chance to paralyze the target."
},
"10": {
"id": 10,
"name": "scratch",
"type": "normal",
"power": 40,
"accuracy": 100,
"pp": 35,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": null,
"target": "selected-pokemon",
"description": "Inflicts regular damage with no additional effect."
},
"17": {
"id": 17,
"name": "wing-attack",
"type": "flying",
"power": 60,
"accuracy": 100,
"pp": 35,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": null,
"target": "selected-pokemon",
"description": "Inflicts regular damage with no additional effect."
},
"14": {
"id": 14,
"name": "swords-dance",
"type": "normal",
"power": null,
"accuracy": null,
"pp": 20,
"priority": 0,
"damage_class": "status",
"effect_id": null,
"effect_chance": null,
"target": "user",
"description": "Raises the user's Attack by two stages."
},
"15": {
"id": 15,
"name": "cut",
"type": "normal",
"power": 50,
"accuracy": 95,
"pp": 30,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": null,
"target": "selected-pokemon",
"description": "Inflicts regular damage with no additional effect."
},
"19": {
"id": 19,
"name": "fly",
"type": "flying",
"power": 90,
"accuracy": 95,
"pp": 15,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": null,
"target": "selected-pokemon",
"description": "User flies high into the air, dodging all attacks, and hits next turn."
},
"25": {
"id": 25,
"name": "mega-kick",
"type": "normal",
"power": 120,
"accuracy": 75,
"pp": 5,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": null,
"target": "selected-pokemon",
"description": "Inflicts regular damage with no additional effect."
},
"29": {
"id": 29,
"name": "headbutt",
"type": "normal",
"power": 70,
"accuracy": 100,
"pp": 15,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": 30,
"target": "selected-pokemon",
"description": "Has a 30% chance to make the target flinch."
},
"34": {
"id": 34,
"name": "body-slam",
"type": "normal",
"power": 85,
"accuracy": 100,
"pp": 15,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": 30,
"target": "selected-pokemon",
"description": "Has a 30% chance to paralyze the target."
},
"36": {
"id": 36,
"name": "take-down",
"type": "normal",
"power": 90,
"accuracy": 85,
"pp": 20,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": null,
"target": "selected-pokemon",
"description": "User receives 1/4 the damage it inflicts in recoil."
},
"43": {
"id": 43,
"name": "leer",
"type": "normal",
"power": null,
"accuracy": 100,
"pp": 30,
"priority": 0,
"damage_class": "status",
"effect_id": null,
"effect_chance": 100,
"target": "all-opponents",
"description": "Lowers the target's Defense by one stage."
},
"38": {
"id": 38,
"name": "double-edge",
"type": "normal",
"power": 120,
"accuracy": 100,
"pp": 15,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": null,
"target": "selected-pokemon",
"description": "User receives 1/3 the damage inflicted in recoil."
},
"44": {
"id": 44,
"name": "bite",
"type": "dark",
"power": 60,
"accuracy": 100,
"pp": 25,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": 30,
"target": "selected-pokemon",
"description": "Has a 30% chance to make the target flinch."
}
}