added kitsune and pixie
This commit is contained in:
@@ -19,5 +19,25 @@
|
||||
"power.faithful.dwarf-powers/dwarven_resistance.name": "Dwarven Resistance",
|
||||
"power.faithful.dwarf-powers/dwarven_resistance.description": "Dwarves have thicker skin that acts as armour.",
|
||||
"power.faithful.dwarf-powers/dwarven_mining.name": "Exceptional Miner",
|
||||
"power.faithful.dwarf-powers/dwarven_mining.description": "Dwarves are known to be the greatest miners in the world, they are able to get valuable ores from bland stones."
|
||||
"power.faithful.dwarf-powers/dwarven_mining.description": "Dwarves are known to be the greatest miners in the world, they are able to get valuable ores from bland stones.",
|
||||
|
||||
//-----pixie-----//
|
||||
"origin.faithful.pixie.name": "Pixie",
|
||||
"origin.faithful.pixie.description": "Tiny, mischievous creatures that live in forests.",
|
||||
"power.faithful.pixie-powers/wings.name": "Flight",
|
||||
"power.faithful.pixie-powers/wings.description": "Pixies have wings that give them powered flight.",
|
||||
"power.faithful.pixie-powers/tiny.name": "Tiny",
|
||||
"power.faithful.pixie-powers/tiny.description": "Pixies are half a block tall.",
|
||||
"power.faithful.pixie-powers/luck.name": "Pixie Luck",
|
||||
"power.faithful.pixie-powers/luck.description": "Pixies have a little bit of luck on their side.",
|
||||
|
||||
//-----kitsune-----//
|
||||
"origin.faithful.kitsune.name": "Pixie",
|
||||
"origin.faithful.kitsune.description": "Tiny, mischievous creatures that live in forests.",
|
||||
"power.faithful.kitsune-powers/light.name": "Light",
|
||||
"power.faithful.kitsune-powers/light.description": "Kitsune do not sink in powder snow, and do not alert skulk",
|
||||
"power.faithful.kitsune-powers/small.name": "Small",
|
||||
"power.faithful.kitsune-powers/small.description": "Kitsune are small creatures, due to their foxlike origins.",
|
||||
"power.faithful.kitsune-powers/swift.name": "Swift",
|
||||
"power.faithful.kitsune-powers/swift.description": "Kitsune are a bit faster than others would consider normal."
|
||||
}
|
||||
@@ -16,7 +16,7 @@
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:random_chance",
|
||||
"chance": 0.1
|
||||
"chance": 0.05
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -28,7 +28,7 @@
|
||||
"conditions": [
|
||||
{
|
||||
"condition": "minecraft:random_chance",
|
||||
"chance": 0.1
|
||||
"chance": 0.05
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -6,5 +6,5 @@
|
||||
],
|
||||
"icon": "minecraft:dirt",
|
||||
"order": 1001,
|
||||
"impact": 3
|
||||
"impact": 1
|
||||
}
|
||||
|
||||
@@ -7,5 +7,5 @@
|
||||
],
|
||||
"icon": "minecraft:dirt",
|
||||
"order": 1000,
|
||||
"impact": 3
|
||||
"impact": 1
|
||||
}
|
||||
|
||||
10
src/main/resources/data/faithful/origins/kitsune.json
Normal file
10
src/main/resources/data/faithful/origins/kitsune.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"powers": [
|
||||
"faithful:kitsune-powers/swift",
|
||||
"faithful:kitsune-powers/small",
|
||||
"faithful:kitsune-powers/light"
|
||||
],
|
||||
"icon": "minecraft:dirt",
|
||||
"order": 1003,
|
||||
"impact": 1
|
||||
}
|
||||
11
src/main/resources/data/faithful/origins/pixie.json
Normal file
11
src/main/resources/data/faithful/origins/pixie.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"powers": [
|
||||
"faithful:pixie-powers/wings",
|
||||
"faithful:pixie-powers/tiny",
|
||||
"faithful:pixie-powers/luck",
|
||||
"faithful:pixie-powers/light"
|
||||
],
|
||||
"icon": "minecraft:dirt",
|
||||
"order": 1002,
|
||||
"impact": 1
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "origins:multiple",
|
||||
"no_skulk": {
|
||||
"type": "origins:prevent_game_event",
|
||||
"event": "minecraft:step",
|
||||
"events": [
|
||||
"minecraft:hit_ground"
|
||||
]
|
||||
},
|
||||
"snow": {
|
||||
"type": "faithful:can_walk_on_powder_snow"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "origins:action_on_callback",
|
||||
"entity_action_gained": {
|
||||
"type": "origins:and",
|
||||
"actions": [
|
||||
{
|
||||
"type": "origins:execute_command",
|
||||
"command": "scale set pehkui:height .80 @s",
|
||||
"permission_level": 4
|
||||
},
|
||||
{
|
||||
"type": "origins:execute_command",
|
||||
"command": "scale set pehkui:width .80 @s",
|
||||
"permission_level": 4
|
||||
},
|
||||
{
|
||||
"type": "origins:execute_command",
|
||||
"command": "scale persist set true",
|
||||
"permission_level": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
"when_orb": true
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"type": "origins:attribute",
|
||||
"modifier": {
|
||||
"name": "swift",
|
||||
"attribute": "minecraft:generic.movement_speed",
|
||||
"value": 0.05,
|
||||
"operation": "multiply_base"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"type": "faithful:can_walk_on_powder_snow",
|
||||
"hidden": true
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"type": "origins:attribute",
|
||||
"modifiers":
|
||||
[
|
||||
{
|
||||
"name": "lucky",
|
||||
"attribute": "generic.luck",
|
||||
"value": 2.0,
|
||||
"operation": "addition"
|
||||
}
|
||||
]
|
||||
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
{
|
||||
"type": "origins:action_on_callback",
|
||||
"entity_action_gained": {
|
||||
"type": "origins:and",
|
||||
"actions": [
|
||||
{
|
||||
"type": "origins:execute_command",
|
||||
"command": "scale set pehkui:height .25 @s",
|
||||
"permission_level": 4
|
||||
},
|
||||
{
|
||||
"type": "origins:execute_command",
|
||||
"command": "scale set pehkui:width .25 @s",
|
||||
"permission_level": 4
|
||||
},
|
||||
{
|
||||
"type": "origins:execute_command",
|
||||
"command": "scale persist set true",
|
||||
"permission_level": 4
|
||||
}
|
||||
]
|
||||
},
|
||||
"when_orb": true
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"type": "faithful:wings",
|
||||
"wings_type": "icarus:zanzas_wings",
|
||||
"armor_slows": false,
|
||||
"exhaustion_amount": 0.1,
|
||||
"wings_speed": 0.02
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
{
|
||||
"type": "faithful:wings",
|
||||
"wings_type": "icarus:white_feathered_wings"
|
||||
}
|
||||
@@ -3,6 +3,8 @@
|
||||
"origins": [
|
||||
"faithful:elf",
|
||||
"faithful:dwarf",
|
||||
"faithful:pixie",
|
||||
"faithful:kitsune",
|
||||
{
|
||||
"condition": {
|
||||
"type": "origins:equipped_item",
|
||||
|
||||
Reference in New Issue
Block a user