added orc

This commit is contained in:
2026-07-07 23:06:30 +02:00
parent f2ebb37bde
commit 1255af457f
7 changed files with 53 additions and 4 deletions

View File

@@ -32,12 +32,22 @@
"power.faithful.pixie-powers/luck.description": "Pixies have a little bit of luck on their side.", "power.faithful.pixie-powers/luck.description": "Pixies have a little bit of luck on their side.",
//-----kitsune-----// //-----kitsune-----//
"origin.faithful.kitsune.name": "Pixie", "origin.faithful.kitsune.name": "Kitsune",
"origin.faithful.kitsune.description": "Tiny, mischievous creatures that live in forests.", "origin.faithful.kitsune.description": "Kitsune are small creatures, due to their foxlike origins.",
"power.faithful.kitsune-powers/light.name": "Light", "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/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.name": "Small",
"power.faithful.kitsune-powers/small.description": "Kitsune are small creatures, due to their foxlike origins.", "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.name": "Swift",
"power.faithful.kitsune-powers/swift.description": "Kitsune are a bit faster than others would consider normal." "power.faithful.kitsune-powers/swift.description": "Kitsune are a bit faster than others would consider normal.",
//-----orc-----//
"origin.faithful.orc.name": "Orc",
"origin.faithful.orc.description": "Cruel and hateful creatures of war.",
"power.faithful.orc-powers/nightvis.name": "Night Sight",
"power.faithful.orc-powers/nightvis.description": "Orcs have better vision in the dark.",
"power.faithful.orc-powers/strength.name": "Orcish Strength",
"power.faithful.orc-powers/strength.description": "Orcs do extra damage when attacking.",
"power.faithful.orc-powers/orc_skin.name": "Orc Skin",
"power.faithful.orc-powers/orc_skin.description": "Orcs skin grants them a bit of armour."
} }

View File

@@ -0,0 +1,10 @@
{
"powers": [
"faithful:orc-powers/nightvis",
"faithful:orc-powers/strength",
"faithful:orc-powers/orc_skin"
],
"icon": "minecraft:dirt",
"order": 1004,
"impact": 1
}

View File

@@ -7,5 +7,5 @@
], ],
"icon": "minecraft:dirt", "icon": "minecraft:dirt",
"order": 1002, "order": 1002,
"impact": 1 "impact": 2
} }

View File

@@ -0,0 +1,6 @@
{
"type": "origins:toggle_night_vision",
"active_by_default": "true",
"strength": 0.1,
"key": "primary"
}

View File

@@ -0,0 +1,9 @@
{
"type": "origins:attribute",
"modifier": {
"name": "Natural Armor health bonus",
"attribute": "minecraft:generic.armor",
"value": 3.0,
"operation": "addition"
}
}

View File

@@ -0,0 +1,13 @@
{
"type": "origins:attribute",
"modifiers":
[
{
"name": "Strong damage",
"attribute": "generic.attack_damage",
"value": 2.0,
"operation": "addition"
}
]
}

View File

@@ -5,6 +5,7 @@
"faithful:dwarf", "faithful:dwarf",
"faithful:pixie", "faithful:pixie",
"faithful:kitsune", "faithful:kitsune",
"faithful:orc",
{ {
"condition": { "condition": {
"type": "origins:equipped_item", "type": "origins:equipped_item",