Changed power "dark_vision", renamed "fox_size"

Changed dark vision to have a toggle to eliminate uncomfortable flickering.
    Gave dark vision the condition to be above 3 hearts health to be used.
Power "fox_size" is now named "small_size" and also added to the avian
Gave origin "avian" the power "small_size" and removed "sprint_jump" from it
main
Pandro 3 days ago
parent c29c7c35ec
commit 70a1993fd3
Signed by: pandro
SSH Key Fingerprint: SHA256:iBUZSuDxqYr4hYpe9U3BA9NJmXKpbGt4H0S8hUwIbrA

@ -5,11 +5,11 @@
"id": "minecraft:feather" "id": "minecraft:feather"
}, },
"powers": [ "powers": [
"feathermc:small_size",
"feathermc:frail_flight", "feathermc:frail_flight",
"origins:fresh_air", "origins:fresh_air",
"feathermc:armor_slow", "feathermc:armor_slow",
"origins:lay_eggs", "origins:lay_eggs"
"origins:sprint_jump"
], ],
"order": 0, "order": 0,
"impact": 2 "impact": 2

@ -5,7 +5,7 @@
"id": "minecraft:sweet_berries" "id": "minecraft:sweet_berries"
}, },
"powers": [ "powers": [
"feathermc:fox_size", "feathermc:small_size",
"feathermc:speedy", "feathermc:speedy",
"feathermc:flammable", "feathermc:flammable",
"origins:sprint_jump", "origins:sprint_jump",

@ -1,18 +1,44 @@
{ {
"type": "origins:night_vision", "type": "origins:multiple",
"strength": 0.5, "name": "Dark Vision",
"name": "Darkvision", "description": "You can at will see in the dark. But only if you're not too hurt.",
"description": "You can see in the dark. Somewhat.",
"badges": [ "badges": [
{ {
"type": "origins:tooltip", "type": "origins:tooltip",
"sprite": "minecraft:textures/item/coal.png", "sprite": "minecraft:textures/gui/sprites/hud/full.png",
"text": "You gain weak night vision when standing in the dark." "text": "You can not see in the dark when under 3 hearts."
} }
], ],
"condition": { "toggle": {
"type": "origins:brightness", "type": "origins:toggle",
"comparison": "<=", "key": {
"compare_to": 0.3 "key": "key.origins.primary_active",
"continuous": false
},
"retain_state": false,
"condition": {
"type": "origins:health",
"comparison": ">=",
"compare_to": 6
}
},
"vision": {
"type": "origins:night_vision",
"retain_state": false,
"strength": 0.5,
"condition": {
"type": "origins:and",
"conditions": [
{
"type": "origins:submerged_in",
"fluid": "minecraft:water",
"inverted": true
},
{
"type": "origins:power_active",
"power": "*:*_toggle"
}
]
}
} }
} }

@ -1,6 +1,6 @@
{ {
"type": "origins:action_on_callback", "type": "origins:action_on_callback",
"name": "Fox sized", "name": "Tiny stature",
"description": "You're small!", "description": "You're small!",
"badges": [ "badges": [
{ {
Loading…
Cancel
Save