This commit is contained in:
Sam 2023-03-31 23:04:47 -04:00
parent 132f26dbc0
commit a68ef7af30
3 changed files with 13 additions and 6 deletions

View File

@ -78,10 +78,10 @@ recipes: {
(Item("common.items.mineral.ore.velorite"), 1),
],
),
// UNCRAFTABLE WEAPONS
// NON-MODULAR WEAPONS
ItemDefId("common.items.weapons.hammer.burnt_drumstick"): (
inputs: [
(Item("common.items.food.meat.bird_large_cooked"), 1),
(Item("common.items.food.meat.bird_large_raw"), 1),
],
),
ItemDefId("common.items.weapons.sword.cultist"): (
@ -995,6 +995,11 @@ recipes: {
],
),
// MISC/HEAD
ItemDefId("common.items.armor.misc.head.straw"): (
inputs: [
(Item("common.items.flowers.wild_flax"), 2),
],
),
ItemDefId("common.items.armor.misc.head.bandana.red"): (
inputs: [
(Item("common.items.crafting_ing.cloth.linen_red"), 1),
@ -1053,7 +1058,7 @@ recipes: {
(Item("common.items.mineral.ore.veloritefrag"), 3),
],
),
ItemDefId("common.items.armor.merchant.hat"): (
ItemDefId("common.items.armor.merchant.turban"): (
inputs: [
(Item("common.items.crafting_ing.cloth.linen_red"), 4),
(Item("common.items.mineral.gem.diamond"), 1),

View File

@ -11,10 +11,10 @@
(0.08, Item("common.items.mineral.gem.ruby")),
(0.1, Item("common.items.mineral.gem.emerald")),
(0.2, Item("common.items.mineral.gem.sapphire")),
(0.25, Item("common.items.mineral.ore.velorite")),
(0.5, Item("common.items.mineral.ore.veloritefrag")),
(0.5, Item("common.items.mineral.ore.velorite")),
(0.75, Item("common.items.mineral.gem.topaz")),
(1.0, Item("common.items.mineral.gem.amethyst")),
(2.0, Item("common.items.mineral.ore.veloritefrag")),
(4.0, Item("common.items.crafting_ing.stones")),
// Ores

View File

@ -46,4 +46,6 @@ hud-crafting-mod_comp_metal_prim_slot_desc = Place a metal ingot here, only cert
hud-crafting-mod_comp_wood_prim_slot_title = Wood
hud-crafting-mod_comp_wood_prim_slot_desc = Place a kind of wood here, only certain woods can be used to make weapons.
hud-crafting-mod_comp_sec_slot_title = Animal Material
hud-crafting-mod_comp_sec_slot_desc = Optionally place an animal crafting ingredient, only certain ingredients can be used to augment weapons.
hud-crafting-mod_comp_sec_slot_desc = Optionally place an animal crafting ingredient, only certain ingredients can be used to augment weapons.
hud-crafting-repair_slot_title = Damaged Item
hud-crafting-repair_slot_desc = Place an item here to see the cost of repairing it at its current durability level.