Complete implementation of Wraith origin

-Addition of Torment ability
-Addition of Charred property
-Added lang for Wraith origin and powers
-Changed exhaust amount in Demon's 'Self transfiguration' ability from 2 to 0.5
This commit is contained in:
CosmoOrSth
2024-01-31 15:53:06 +05:30
parent 11ede08f3a
commit 2cde5d3ab8
8 changed files with 113 additions and 9 deletions

View File

@@ -19,5 +19,16 @@
"power.terraoriginum.demon-powers/stained.name": "Stained",
"power.terraoriginum.demon-powers/stained.description": "A demon is stained in the blood of it's victims",
"power.terraoriginum.demon-powers/extra_health.name": "Extra Health",
"power.terraoriginum.demon-powers/extra_health.description": "A demon's body is exceptionally well built, allowing it to take a bit more punishment than usual before perishing"
"power.terraoriginum.demon-powers/extra_health.description": "A demon's body is exceptionally well built, allowing it to take a bit more punishment than usual before perishing",
//-----Wraith-----//
"origin.terraoriginum.wraith.name": "Wraith",
"origin.terraoriginum.wraith.description": "A tormented soul brought back to the land of life, hungering to distribute it's agony to the living.",
"power.terraoriginum.wraith-powers/soaring1.name": "Soaring",
"power.terraoriginum.wraith-powers/soaring1.description": "A Wraith has the ability to exhert it's ectoplasm to reduce it's body's response to gravity as well as create a thrust, allowing it to swim through the air.",
"power.terraoriginum.wraith-powers/torment1.name": "Torment",
"power.terraoriginum.wraith-powers/torment1.description": "The Wraith recalls the eons of agony it suffered, causing it's body to respond to the trauma by strengthening itself. Expends ectoplasm quickly.",
"power.terraoriginum.wraith-powers/charred.name": "Charred",
"power.terraoriginum.wraith-powers/charred.description": "Wraiths are burned of torment, which gives them a literally charred appearance."
}

View File

@@ -3,6 +3,10 @@
"terraoriginum:wraith-powers/soaring1",
"terraoriginum:wraith-powers/soaring2",
"terraoriginum:wraith-powers/soaring3",
"terraoriginum:wraith-powers/torment1",
"terraoriginum:wraith-powers/torment2",
"terraoriginum:wraith-powers/torment3",
"terraoriginum:wraith-powers/charred",
"terraoriginum:spirit-powers/phasing1",
"terraoriginum:spirit-powers/phasing2",
"terraoriginum:spirit-powers/phasing3",

View File

@@ -34,7 +34,7 @@
},
{
"type": "origins:exhaust",
"amount": 2
"amount": 0.5
}
]
},

View File

@@ -0,0 +1,7 @@
{
"type": "origins:model_color",
"blue": 0.2,
"green": 0.2,
"red": 0.2,
"alpha": 0.9
}

View File

@@ -1,15 +1,10 @@
{
"type": "origins:swimming",
"conditions": [{
"type": "origins:submerged_in",
"fluid": "minecraft:lava",
"inverted": true
},
{
"condition": {
"type": "origins:power_active",
"power": "terraoriginum:wraith-powers/soaring1",
"inverted": false
}
]
}

View File

@@ -0,0 +1,15 @@
{
"type": "origins:toggle",
"active_by_default": false,
"key": {
"key": "key.origins.primary_active",
"continuous": false
},
"retain_state": false,
"condition": {
"type": "origins:resource",
"resource": "terraoriginum:spirit-powers/ectoplasm",
"comparison": ">=",
"compare_to": 1
}
}

View File

@@ -0,0 +1,45 @@
{
"type": "origins:action_over_time",
"interval": 5,
"hidden": true,
"entity_action": {
"type": "origins:and",
"actions": [
{
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:strength",
"duration": 35,
"amplifier": 0,
"show_icon": false
}
},
{
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:speed",
"duration": 35,
"amplifier": 1,
"show_icon": false
}
},
{
"type": "origins:apply_effect",
"effect": {
"effect": "minecraft:resistance",
"duration": 35,
"amplifier": 0,
"show_icon": false
}
},
{
"type": "origins:exhaust",
"amount": 0.5
}
]
},
"condition": {
"type": "origins:power_active",
"power": "terraoriginum:wraith-powers/torment1"
}
}

View File

@@ -0,0 +1,27 @@
{
"type": "origins:action_over_time",
"interval": 20,
"hidden": true,
"entity_action": {
"type": "origins:if_else_list",
"actions": [
{
"condition": {
"type": "origins:power_active",
"power": "terraoriginum:wraith-powers/torment1"
},
"action": {
"type": "origins:and",
"actions": [
{
"type": "origins:change_resource",
"resource": "terraoriginum:spirit-powers/ectoplasm",
"change": -9,
"operation": "add"
}
]
}
}
]
}
}