Compare commits

..

No commits in common. '9ebac7d1d72aeb17ecd70244fddcc7d417e4508b' and '3c46d500b05538299a6c5b78fd7dd931c34c2a5a' have entirely different histories.

@ -6,7 +6,7 @@
"feathermc:armor_slow", "feathermc:armor_slow",
"feathermc:dark_sleep", "feathermc:dark_sleep",
"feathermc:blinding_lights", "feathermc:blinding_lights",
"feathermc:dark_vision" "feathermc:night_vision"
], ],
"order": 1, "order": 1,
"impact": 2 "impact": 2

@ -5,7 +5,9 @@
"origins:sprint_jump", "origins:sprint_jump",
"origins:nine_lives", "origins:nine_lives",
"feathermc:fall_immunity_or_death", "feathermc:fall_immunity_or_death",
"feathermc:night_vision_focus", "feathermc:night_vision_drain",
"feathermc:night_vision_concentrate",
"feathermc:hunger_when_night_vision_drain",
"origins:velvet_paws", "origins:velvet_paws",
"origins:scare_creepers" "origins:scare_creepers"
], ],

@ -2,7 +2,8 @@
"name": "Protogen", "name": "Protogen",
"description": "An artificial creature designed to adapt to its surroundings.", "description": "An artificial creature designed to adapt to its surroundings.",
"powers": [ "powers": [
"feathermc:pumpkin_hate" "feathermc:pumpkin_hate",
"feathermc:reverse_logic"
], ],
"order": 9, "order": 9,
"impact": 2 "impact": 2

@ -0,0 +1,10 @@
{
"type": "origins:attribute",
"hidden": true,
"modifier": {
"id": "small_size_compensation",
"attribute": "minecraft:generic.jump_strength",
"amount": 0.1,
"operation": "add_value"
}
}

@ -1,23 +1,11 @@
{ {
"type": "origins:multiple", "type": "origins:elytra_flight",
"name": "Frail Flight", "name": "Frail Flight",
"description": "Able to use your wings to glide but only when you're not hurt.", "description": "Able to use your wings to glide but only when you're not hurt.",
"frail_flight": { "render_elytra": true,
"type": "origins:elytra_flight", "condition": {
"render_elytra": true, "type": "origins:health",
"condition": { "comparison": ">=",
"type": "origins:health", "compare_to": 20
"comparison": ">=",
"compare_to": 20
}
},
"prevent_boost": {
"type": "origins:prevent_item_use",
"item_condition": {
"type": "origins:ingredient",
"ingredient": {
"item": "minecraft:firework_rocket"
}
}
} }
} }

@ -0,0 +1,11 @@
{
"type": "origins:exhaust",
"hidden": true,
"interval": 20,
"exhaustion": 0.812,
"condition": {
"type": "origins:power_active",
"power": "feathermc:night_vision_drain"
}
}

@ -0,0 +1,15 @@
{
"name": "Night Vision",
"description": "Able to see in the dark at will. The effort does make you hungry more quickly though and requires certain level of hunger to be used!",
"type": "origins:toggle",
"key": {
"key": "key.origins.primary_active",
"continuous": false
},
"retain_state": false,
"condition": {
"type": "apoli:food_level",
"comparison": ">",
"compare_to": 6
}
}

@ -0,0 +1,17 @@
{
"type": "origins:action_on_callback",
"entity_action_respawned": {
"type": "origins:if_else",
"condition": {
"type": "origins:power_active",
"power": "feathermc:night_vision_concentrate",
"inverted": true
},
"if_action": {
"type": "origins:toggle",
"power": "feathermc:night_vision_concentrate"
}
},
"hidden": true
}

@ -0,0 +1,29 @@
{
"hidden": true,
"type": "origins:night_vision",
"retain_state": false,
"strength": 1.0,
"key": {
"key": "key.origins.primary_active",
"continuous": false
},
"condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:submerged_in",
"fluid": "minecraft:water",
"inverted": true
},
{
"type": "apoli:food_level",
"comparison": ">",
"compare_to": 6
},
{
"type": "origins:power_active",
"power": "feathermc:night_vision_concentrate"
}
]
}
}

@ -1,46 +0,0 @@
{
"type": "origins:multiple",
"name": "Night Vision",
"description": "If you concentrate enough, you can see in the dark. It is draining you though.",
"toggle": {
"type": "origins:toggle",
"key": {
"key": "key.origins.primary_active",
"continuous": false
},
"retain_state": false,
"condition": {
"type": "apoli:food_level",
"comparison": ">",
"compare_to": 6
}
},
"vision": {
"type": "origins:night_vision",
"retain_state": false,
"strength": 1.0,
"condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:submerged_in",
"fluid": "minecraft:water",
"inverted": true
},
{
"type": "origins:power_active",
"power": "feathermc:night_vision_toggle"
}
]
}
},
"drain": {
"type": "origins:exhaust",
"interval": 80,
"exhaustion": 1.0,
"condition": {
"type": "origins:power_active",
"power": "feathermc:night_vision_toggle"
}
}
}

@ -0,0 +1,27 @@
{
"type": "origins:multiple",
"toggle": {
"type": "origins:toggle",
"active_by_default": false,
"key": {
"key": "key.origins.primary_active"
}
},
"reversed_velocity": {
"type": "origins:modify_velocity",
"modifier": {
"id": "reverse_logic_mod",
"amount": -2,
"operation": "multiply_base_multiplicative"
},
"axes": [
"x",
"y",
"z"
],
"condition": {
"type": "origins:power_active",
"power": "*:toggle"
}
}
}
Loading…
Cancel
Save