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

72 lines
1.6 KiB
JSON

{
"1": {
"id": 1,
"name": "pound",
"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."
},
"2": {
"id": 2,
"name": "karate-chop",
"type": "fighting",
"power": 50,
"accuracy": 100,
"pp": 25,
"priority": 0,
"damage_class": "physical",
"effect_id": null,
"effect_chance": null,
"target": "selected-pokemon",
"description": "Has an increased chance for a critical hit."
},
"33": {
"id": 33,
"name": "tackle",
"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."
},
"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."
}
}