Skip to content

Commit

Permalink
coconut helmet
Browse files Browse the repository at this point in the history
  • Loading branch information
BrunoSupremo committed Feb 2, 2021
1 parent a80e259 commit bdc2d2c
Show file tree
Hide file tree
Showing 8 changed files with 595 additions and 458 deletions.
52 changes: 52 additions & 0 deletions entities/armor/coconut_helmet/coconut_helmet.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"mixins": "stonehearth:mixins:item_properties",
"type": "entity",
"components": {
"model_variants": {
"default": {
"layer": "hat",
"transparent": "false",
"models": [
"file(coconut_helmet.qb)"
]
}
},
"stonehearth:entity_forms": {
"iconic_form": "file(coconut_helmet_iconic.json)"
},
"stonehearth:equipment_piece": {
"render_type": "merge_with_model",
"slot": "helmet",
"ilevel": 1,
"injected_buffs": [
"stonehearth_ace:buffs:weather:hot_resist",
"stonehearth_ace:buffs:weather:sunstroke_resist"
],
"required_job_level": 1,
"roles":["combat"],
"equip_effect": "stonehearth:effects:weapon_level_up"
}
},
"entity_data": {
"stonehearth:combat:armor_data": {
"base_damage_reduction": 1
},
"stonehearth:net_worth": {
"value_in_gold": 6,
"rarity": "common",
"shop_info": {
"buyable": false,
"sellable": true,
"shopkeeper_level": 1,
"shopkeeper_type": "caravan"
}
},
"stonehearth:catalog": {
"display_name": "i18n(archipelago_biome:entities.armor.coconut_helmet.display_name)",
"description": "i18n(archipelago_biome:entities.armor.coconut_helmet.description)",
"icon": "file(coconut_helmet.png)",
"category": "armor",
"material_tags": ["coconut", "helmet", "armor", "heavy_armor", "stockpile_equipment"]
}
}
}
22 changes: 22 additions & 0 deletions entities/armor/coconut_helmet/coconut_helmet_iconic.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"mixins": "stonehearth:mixins:item_properties",
"type": "entity",
"components": {
"model_variants": {
"default": {
"models": [
"file(coconut_helmet_iconic.qb)"
]
}
},
"mob": {
"model_origin": { "x": -0.05, "y": 0, "z": 0.05 }
}
},
"entity_data": {
"stonehearth:catalog": {
"is_item": true,
"category": "armor"
}
}
}
26 changes: 26 additions & 0 deletions jobs/weaver/recipes/clothing_armor/coconut_helmet_recipe.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"type" : "recipe",
"effort": 33,
"work_units" : 2,
"recipe_name": "i18n(archipelago_biome:entities.armor.coconut_helmet.display_name)",
"description": "i18n(archipelago_biome:entities.armor.coconut_helmet.recipe.description)",
"flavor": "i18n(archipelago_biome:entities.armor.coconut_helmet.recipe.flavor)",
"portrait" : "/archipelago_biome/entities/armor/coconut_helmet/coconut_helmet.png",
"workshop": "stonehearth:weaver:workbench",
"level_requirement": 1,
"ingredients": [
{
"uri" : "archipelago_biome:food:coconut",
"count": 1
},
{
"material": "pelt resource",
"count" : 1
}
],
"produces": [
{
"item":"archipelago_biome:armor:coconut_helmet"
}
]
}
7 changes: 7 additions & 0 deletions jobs/weaver/recipes/recipes.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@
"recipe" : "file(bead_door_recipe.json)"
}
}
},
"clothing_armor": {
"recipes": {
"coconut_helmet": {
"recipe": "file(clothing_armor/coconut_helmet_recipe.json)"
}
}
}
}
}
5 changes: 5 additions & 0 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
},
"entities": {
"armor": {
"coconut_helmet": {
"display_name": "Coconut Helmet",
"description": "Lightweight and hard, but a little tight",
"flavor": "Left in the sun for a while to dry, then prepared with fur to fit someones head."
},
"fish_quiver": {
"display_name": "Fish Quiver",
"description": "Enemies lose courage when a flying fish hits their face"
Expand Down
17 changes: 17 additions & 0 deletions locales/ko.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
},
"entities": {
"armor": {
"coconut_helmet": {
"display_name": "Coconut Helmet",
"description": "Lightweight and hard, but a little tight",
"flavor": "Left in the sun for a while to dry, then prepared with fur to fit someones head."
},
"fish_quiver": {
"display_name": "물고기 화살통",
"description": "적들은 날아다니는 물고기가 그들의 얼굴을 후려칠때마다 용기를 잃어버렸다"
Expand Down Expand Up @@ -146,6 +151,14 @@
"flavor": "최고의 물고기가 여기있다"
}
},
"fishing_net": {
"display_name": "Fishing Net",
"description": "Hanging from support structures"
},
"wall_fishing_net": {
"display_name": "Wall Fishing Net",
"description": "Hanging from hooks on the wall"
},
"fruit_container": {
"display_name": "코코넛 보관함",
"description": "꺼낼 준비가 되었다구요!",
Expand All @@ -166,6 +179,10 @@
"display_name": "용암 블록",
"description": "매우 뜨겁고 빛나는 빨강, 반고체, 용암. 만지지 마세요."
},
"volcano_smoke": {
"display_name": "Smoke Source",
"description": "Infinite smoke generated from this object."
},
"pearl_container": {
"display_name": "진주 보관함",
"description": "꺼낼 준비가 되었다구요!"
Expand Down
Loading

0 comments on commit bdc2d2c

Please sign in to comment.