From dbae4190999164c1c245be645e2339afa7aa759d Mon Sep 17 00:00:00 2001 From: Pandro Date: Fri, 10 Oct 2025 02:23:48 +0200 Subject: [PATCH] Added power "explosive_death" Added power "explosive_death" which makes the player explode when dying (no block damage) --- data/feathermc/powers/explosive_death.json | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 data/feathermc/powers/explosive_death.json diff --git a/data/feathermc/powers/explosive_death.json b/data/feathermc/powers/explosive_death.json new file mode 100644 index 0000000..a51c2f4 --- /dev/null +++ b/data/feathermc/powers/explosive_death.json @@ -0,0 +1,26 @@ +{ + "type": "origins:action_on_death", + "name": "Explosive Core", + "description": "You got a core that could take out your environment when going critical.", + "badges": [ + { + "type": "origins:tooltip", + "sprite": "minecraft:textures/item/gunpowder.png", + "text": "You will explode on death!" + } + ], + "bientity_action": { + "type": "origins:and", + "actions": [ + { + "type": "origins:target_action", + "action": { + "type": "origins:explode", + "power": 5, + "destruction_type": "keep", + "damage_slef": false + } + } + ] + } +}