Init & Avian Origin
Added custom avian origin with power "frail flight" Added custom power "frail flight" which allows elytra flight but only when health >= 20. No icons used yet. For some reason they cause errors.main
commit
d87e1f913b
@ -0,0 +1,9 @@
|
||||
{
|
||||
"name": "Avian",
|
||||
"description": "A feathered creature that prefers to live up high, is lightweight and can glide.",
|
||||
"powers": [
|
||||
"feathermc:frail_flight"
|
||||
],
|
||||
"order": 0,
|
||||
"impact": 2
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
{
|
||||
"type": "origins:elytra_flight",
|
||||
"name": "Frail Flight",
|
||||
"icon": "minecraft:elytra",
|
||||
"description": "Able to use your wings to glide but only when you're not hurt.",
|
||||
"render_elytra": true,
|
||||
"condition": {
|
||||
"type": "origins:health",
|
||||
"comparison": ">=",
|
||||
"compare_to": 20
|
||||
}
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"replace": false,
|
||||
"origins": [
|
||||
"feathermc:avian"
|
||||
]
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"pack_format": 15,
|
||||
"description": "Adds a new Avian, Bat, Feline, Dog, Dragon, Protogen origin. Meant for a specific server."
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue