mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
more sprite stuff and crafting UI update
fix item images fix CR display
This commit is contained in:
parent
1a0f6f03ef
commit
a4d56e7843
@ -1,9 +1,9 @@
|
|||||||
ItemDef(
|
ItemDef(
|
||||||
name: "Craftsman Hammer",
|
name: "Old Hammer",
|
||||||
description: "Used to craft various items.",
|
description: "You don't quite remember where you got this from...",
|
||||||
kind: Ingredient(
|
kind: Ingredient(
|
||||||
kind: "CraftsmanHammer",
|
kind: "CraftsmanHammer",
|
||||||
),
|
),
|
||||||
quality: Moderate,
|
quality: Low,
|
||||||
tags: [CraftingTool],
|
tags: [CraftingTool],
|
||||||
)
|
)
|
||||||
|
18
assets/common/items/tool/craftsman_hammer.ron
Normal file
18
assets/common/items/tool/craftsman_hammer.ron
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
ItemDef(
|
||||||
|
name: "Craftsman Hammer",
|
||||||
|
description: "Used to craft various items.",
|
||||||
|
kind: Tool((
|
||||||
|
kind: Hammer,
|
||||||
|
hands: One,
|
||||||
|
stats: Direct((
|
||||||
|
equip_time_secs: 0.25,
|
||||||
|
power: 0.2,
|
||||||
|
poise_strength: 0.25,
|
||||||
|
speed: 1.5,
|
||||||
|
crit_chance: 0.0,
|
||||||
|
crit_mult: 0.0,
|
||||||
|
)),
|
||||||
|
)),
|
||||||
|
quality: Common,
|
||||||
|
tags: [CraftingTool],
|
||||||
|
)
|
@ -1,19 +1,20 @@
|
|||||||
{
|
{
|
||||||
"crafting_hammer": (
|
"crafting_hammer": (
|
||||||
output: ("common.items.crafting_tools.craftsman_hammer", 1),
|
output: ("common.items.tool.craftsman_hammer", 1),
|
||||||
inputs: [
|
inputs: [
|
||||||
(Item("common.items.crafting_ing.twigs"), 6),
|
(Item("common.items.crafting_ing.twigs"), 6),
|
||||||
(Item("common.items.crafting_ing.stones"), 6),
|
(Item("common.items.crafting_ing.stones"), 6),
|
||||||
],
|
],
|
||||||
craft_sprite: Some(CraftingBench),
|
craft_sprite: Some(Anvil),
|
||||||
),
|
),
|
||||||
"mortar_pestle": (
|
"mortar_pestle": (
|
||||||
output: ("common.items.crafting_tools.mortar_pestle", 1),
|
output: ("common.items.crafting_tools.mortar_pestle", 1),
|
||||||
inputs: [
|
inputs: [
|
||||||
(Item("common.items.crafting_ing.stones"), 6),
|
(Item("common.items.crafting_ing.stones"), 6),
|
||||||
(Item("common.items.food.coconut"), 1),
|
(Item("common.items.food.coconut"), 1),
|
||||||
(Item("common.items.crafting_tools.craftsman_hammer"), 0),
|
(Item("common.items.tool.craftsman_hammer"), 0),
|
||||||
],
|
],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"sewing_set": (
|
"sewing_set": (
|
||||||
output: ("common.items.crafting_tools.sewing_set", 1),
|
output: ("common.items.crafting_tools.sewing_set", 1),
|
||||||
@ -22,12 +23,13 @@
|
|||||||
(Item("common.items.crafting_ing.twigs"), 4),
|
(Item("common.items.crafting_ing.twigs"), 4),
|
||||||
(Item("common.items.crafting_ing.stones"), 2),
|
(Item("common.items.crafting_ing.stones"), 2),
|
||||||
],
|
],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"velorite_frag": (
|
"velorite_frag": (
|
||||||
output: ("common.items.ore.veloritefrag", 2),
|
output: ("common.items.ore.veloritefrag", 2),
|
||||||
inputs: [
|
inputs: [
|
||||||
(Item("common.items.ore.velorite"), 1),
|
(Item("common.items.ore.velorite"), 1),
|
||||||
(Item("common.items.crafting_tools.craftsman_hammer"), 0),
|
(Item("common.items.tool.craftsman_hammer"), 0),
|
||||||
],
|
],
|
||||||
craft_sprite: Some(Anvil),
|
craft_sprite: Some(Anvil),
|
||||||
),
|
),
|
||||||
@ -63,6 +65,7 @@
|
|||||||
(Item("common.items.ore.veloritefrag"), 2),
|
(Item("common.items.ore.veloritefrag"), 2),
|
||||||
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
||||||
],
|
],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"firework_blue": (
|
"firework_blue": (
|
||||||
output: ("common.items.utility.firework_blue", 1),
|
output: ("common.items.utility.firework_blue", 1),
|
||||||
@ -73,6 +76,7 @@
|
|||||||
(Item("common.items.ore.veloritefrag"), 1),
|
(Item("common.items.ore.veloritefrag"), 1),
|
||||||
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
||||||
],
|
],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"firework_green": (
|
"firework_green": (
|
||||||
output: ("common.items.utility.firework_green", 1),
|
output: ("common.items.utility.firework_green", 1),
|
||||||
@ -83,6 +87,7 @@
|
|||||||
(Item("common.items.ore.veloritefrag"), 1),
|
(Item("common.items.ore.veloritefrag"), 1),
|
||||||
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
||||||
],
|
],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"firework_purple": (
|
"firework_purple": (
|
||||||
output: ("common.items.utility.firework_purple", 1),
|
output: ("common.items.utility.firework_purple", 1),
|
||||||
@ -93,6 +98,7 @@
|
|||||||
(Item("common.items.ore.veloritefrag"), 1),
|
(Item("common.items.ore.veloritefrag"), 1),
|
||||||
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
||||||
],
|
],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"firework_red": (
|
"firework_red": (
|
||||||
output: ("common.items.utility.firework_red", 1),
|
output: ("common.items.utility.firework_red", 1),
|
||||||
@ -103,6 +109,7 @@
|
|||||||
(Item("common.items.ore.veloritefrag"), 1),
|
(Item("common.items.ore.veloritefrag"), 1),
|
||||||
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
||||||
],
|
],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"firework_white": (
|
"firework_white": (
|
||||||
output: ("common.items.utility.firework_white", 1),
|
output: ("common.items.utility.firework_white", 1),
|
||||||
@ -113,6 +120,7 @@
|
|||||||
(Item("common.items.ore.veloritefrag"), 1),
|
(Item("common.items.ore.veloritefrag"), 1),
|
||||||
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
||||||
],
|
],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"firework_yellow": (
|
"firework_yellow": (
|
||||||
output: ("common.items.utility.firework_yellow", 1),
|
output: ("common.items.utility.firework_yellow", 1),
|
||||||
@ -123,6 +131,7 @@
|
|||||||
(Item("common.items.ore.veloritefrag"), 1),
|
(Item("common.items.ore.veloritefrag"), 1),
|
||||||
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
||||||
],
|
],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"apple_shroom_curry": (
|
"apple_shroom_curry": (
|
||||||
output: ("common.items.food.apple_mushroom_curry", 1),
|
output: ("common.items.food.apple_mushroom_curry", 1),
|
||||||
@ -132,7 +141,7 @@
|
|||||||
(Item("common.items.food.apple"), 4),
|
(Item("common.items.food.apple"), 4),
|
||||||
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
(Item("common.items.crafting_tools.mortar_pestle"), 0),
|
||||||
],
|
],
|
||||||
craft_sprite: Some(Cauldron),
|
craft_sprite: Some(CookingPot),
|
||||||
),
|
),
|
||||||
"salad_plain": (
|
"salad_plain": (
|
||||||
output: ("common.items.food.plainsalad", 1),
|
output: ("common.items.food.plainsalad", 1),
|
||||||
@ -179,7 +188,7 @@
|
|||||||
(Item("common.items.crafting_ing.twigs"), 5),
|
(Item("common.items.crafting_ing.twigs"), 5),
|
||||||
(Item("common.items.crafting_ing.leather_scraps"), 5),
|
(Item("common.items.crafting_ing.leather_scraps"), 5),
|
||||||
(Item("common.items.crafting_ing.cloth_scraps"), 10),
|
(Item("common.items.crafting_ing.cloth_scraps"), 10),
|
||||||
(Item("common.items.crafting_tools.craftsman_hammer"), 0),
|
(Item("common.items.tool.craftsman_hammer"), 0),
|
||||||
(Item("common.items.crafting_tools.sewing_set"), 0),
|
(Item("common.items.crafting_tools.sewing_set"), 0),
|
||||||
],
|
],
|
||||||
craft_sprite: Some(CraftingBench),
|
craft_sprite: Some(CraftingBench),
|
||||||
@ -190,7 +199,7 @@
|
|||||||
(Item("common.items.crafting_ing.twigs"), 5),
|
(Item("common.items.crafting_ing.twigs"), 5),
|
||||||
(Item("common.items.crafting_ing.cloth_scraps_red"), 10),
|
(Item("common.items.crafting_ing.cloth_scraps_red"), 10),
|
||||||
(Item("common.items.crafting_ing.leather_scraps"), 5),
|
(Item("common.items.crafting_ing.leather_scraps"), 5),
|
||||||
(Item("common.items.crafting_tools.craftsman_hammer"), 0),
|
(Item("common.items.tool.craftsman_hammer"), 0),
|
||||||
(Item("common.items.crafting_tools.sewing_set"), 0),
|
(Item("common.items.crafting_tools.sewing_set"), 0),
|
||||||
],
|
],
|
||||||
craft_sprite: Some(CraftingBench),
|
craft_sprite: Some(CraftingBench),
|
||||||
@ -202,7 +211,7 @@
|
|||||||
(Item("common.items.crafting_ing.leather_scraps"), 5),
|
(Item("common.items.crafting_ing.leather_scraps"), 5),
|
||||||
(Item("common.items.crafting_ing.cloth_scraps"), 5),
|
(Item("common.items.crafting_ing.cloth_scraps"), 5),
|
||||||
(Item("common.items.crafting_ing.emerald"), 1),
|
(Item("common.items.crafting_ing.emerald"), 1),
|
||||||
(Item("common.items.crafting_tools.craftsman_hammer"), 0),
|
(Item("common.items.tool.craftsman_hammer"), 0),
|
||||||
(Item("common.items.crafting_tools.sewing_set"), 0),
|
(Item("common.items.crafting_tools.sewing_set"), 0),
|
||||||
],
|
],
|
||||||
craft_sprite: Some(CraftingBench),
|
craft_sprite: Some(CraftingBench),
|
||||||
@ -215,7 +224,7 @@
|
|||||||
(Item("common.items.crafting_ing.leather_scraps"), 5),
|
(Item("common.items.crafting_ing.leather_scraps"), 5),
|
||||||
(Item("common.items.crafting_ing.cloth_scraps"), 5),
|
(Item("common.items.crafting_ing.cloth_scraps"), 5),
|
||||||
(Item("common.items.crafting_ing.ruby"), 1),
|
(Item("common.items.crafting_ing.ruby"), 1),
|
||||||
(Item("common.items.crafting_tools.craftsman_hammer"), 0),
|
(Item("common.items.tool.craftsman_hammer"), 0),
|
||||||
(Item("common.items.crafting_tools.sewing_set"), 0),
|
(Item("common.items.crafting_tools.sewing_set"), 0),
|
||||||
],
|
],
|
||||||
craft_sprite: Some(CraftingBench),
|
craft_sprite: Some(CraftingBench),
|
||||||
@ -229,7 +238,7 @@
|
|||||||
(Item("common.items.crafting_ing.cloth_scraps"), 5),
|
(Item("common.items.crafting_ing.cloth_scraps"), 5),
|
||||||
(Item("common.items.crafting_ing.icy_fang"), 1),
|
(Item("common.items.crafting_ing.icy_fang"), 1),
|
||||||
(Item("common.items.crafting_ing.ruby"), 1),
|
(Item("common.items.crafting_ing.ruby"), 1),
|
||||||
(Item("common.items.crafting_tools.craftsman_hammer"), 0),
|
(Item("common.items.tool.craftsman_hammer"), 0),
|
||||||
(Item("common.items.crafting_tools.sewing_set"), 0),
|
(Item("common.items.crafting_tools.sewing_set"), 0),
|
||||||
],
|
],
|
||||||
craft_sprite: Some(CraftingBench),
|
craft_sprite: Some(CraftingBench),
|
||||||
@ -242,7 +251,7 @@
|
|||||||
(Item("common.items.crafting_ing.leather_scraps"), 5),
|
(Item("common.items.crafting_ing.leather_scraps"), 5),
|
||||||
(Item("common.items.crafting_ing.cloth_scraps"), 5),
|
(Item("common.items.crafting_ing.cloth_scraps"), 5),
|
||||||
(Item("common.items.crafting_ing.ruby"), 1),
|
(Item("common.items.crafting_ing.ruby"), 1),
|
||||||
(Item("common.items.crafting_tools.craftsman_hammer"), 0),
|
(Item("common.items.tool.craftsman_hammer"), 0),
|
||||||
(Item("common.items.crafting_tools.sewing_set"), 0),
|
(Item("common.items.crafting_tools.sewing_set"), 0),
|
||||||
],
|
],
|
||||||
craft_sprite: Some(CraftingBench),
|
craft_sprite: Some(CraftingBench),
|
||||||
@ -253,7 +262,7 @@
|
|||||||
(Item("common.items.crafting_ing.twigs"), 20),
|
(Item("common.items.crafting_ing.twigs"), 20),
|
||||||
(Item("common.items.ore.veloritefrag"), 8),
|
(Item("common.items.ore.veloritefrag"), 8),
|
||||||
(Item("common.items.crafting_ing.ruby"), 4),
|
(Item("common.items.crafting_ing.ruby"), 4),
|
||||||
(Item("common.items.crafting_tools.craftsman_hammer"), 0),
|
(Item("common.items.tool.craftsman_hammer"), 0),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
"Hunting Bow": (
|
"Hunting Bow": (
|
||||||
@ -278,30 +287,37 @@
|
|||||||
"adventure back": (
|
"adventure back": (
|
||||||
output: ("common.items.armor.agile.back", 1),
|
output: ("common.items.armor.agile.back", 1),
|
||||||
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 4)],
|
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 4)],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"adventure belt": (
|
"adventure belt": (
|
||||||
output: ("common.items.armor.agile.belt", 1),
|
output: ("common.items.armor.agile.belt", 1),
|
||||||
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 2)],
|
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 2)],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"adventure chest": (
|
"adventure chest": (
|
||||||
output: ("common.items.armor.agile.chest", 1),
|
output: ("common.items.armor.agile.chest", 1),
|
||||||
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 12)],
|
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 12)],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"adventure feet": (
|
"adventure feet": (
|
||||||
output: ("common.items.armor.agile.foot", 1),
|
output: ("common.items.armor.agile.foot", 1),
|
||||||
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 3)],
|
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 3)],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"adventure hands": (
|
"adventure hands": (
|
||||||
output: ("common.items.armor.agile.hand", 1),
|
output: ("common.items.armor.agile.hand", 1),
|
||||||
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 4)],
|
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 4)],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"adventure pants": (
|
"adventure pants": (
|
||||||
output: ("common.items.armor.agile.pants", 1),
|
output: ("common.items.armor.agile.pants", 1),
|
||||||
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 8)],
|
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 8)],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"adventure shoulder": (
|
"adventure shoulder": (
|
||||||
output: ("common.items.armor.agile.shoulder", 1),
|
output: ("common.items.armor.agile.shoulder", 1),
|
||||||
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 12)],
|
inputs: [(Item("common.items.crafting_ing.leather_scraps"), 12)],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"Seashell Necklace": (
|
"Seashell Necklace": (
|
||||||
output: ("common.items.armor.misc.neck.shell", 1),
|
output: ("common.items.armor.misc.neck.shell", 1),
|
||||||
@ -311,6 +327,7 @@
|
|||||||
(Item("common.items.crafting_ing.seashells"), 3),
|
(Item("common.items.crafting_ing.seashells"), 3),
|
||||||
(Item("common.items.crafting_tools.sewing_set"), 0),
|
(Item("common.items.crafting_tools.sewing_set"), 0),
|
||||||
],
|
],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"red cloth": (
|
"red cloth": (
|
||||||
output: ("common.items.crafting_ing.cloth_scraps_red", 1),
|
output: ("common.items.crafting_ing.cloth_scraps_red", 1),
|
||||||
@ -360,6 +377,7 @@
|
|||||||
(Item("common.items.armor.misc.bag.tiny_leather_pouch"), 2),
|
(Item("common.items.armor.misc.bag.tiny_leather_pouch"), 2),
|
||||||
(Item("common.items.crafting_tools.sewing_set"), 0),
|
(Item("common.items.crafting_tools.sewing_set"), 0),
|
||||||
],
|
],
|
||||||
|
craft_sprite: Some(CraftingBench),
|
||||||
),
|
),
|
||||||
"sturdy red backpack": (
|
"sturdy red backpack": (
|
||||||
output: ("common.items.armor.misc.bag.sturdy_red_backpack", 1),
|
output: ("common.items.armor.misc.bag.sturdy_red_backpack", 1),
|
||||||
@ -395,7 +413,7 @@
|
|||||||
(Item("common.items.crafting_ing.cloth_scraps"), 1), // TODO: Replace with plant fiber when obtainable
|
(Item("common.items.crafting_ing.cloth_scraps"), 1), // TODO: Replace with plant fiber when obtainable
|
||||||
(Item("common.items.crafting_ing.stones"), 5), // TODO: Replace with iron ingots when obtainable
|
(Item("common.items.crafting_ing.stones"), 5), // TODO: Replace with iron ingots when obtainable
|
||||||
(Item("common.items.crafting_ing.twigs"), 4),
|
(Item("common.items.crafting_ing.twigs"), 4),
|
||||||
(Item("common.items.crafting_tools.craftsman_hammer"), 0),
|
(Item("common.items.tool.craftsman_hammer"), 0),
|
||||||
],
|
],
|
||||||
craft_sprite: Some(Anvil),
|
craft_sprite: Some(Anvil),
|
||||||
),
|
),
|
||||||
@ -417,7 +435,7 @@
|
|||||||
// output: ("common.items.crafting_ing.modular.damage.sword.metal_blade", 1),
|
// output: ("common.items.crafting_ing.modular.damage.sword.metal_blade", 1),
|
||||||
// inputs: [
|
// inputs: [
|
||||||
// (Tag(MetalIngot), 5),
|
// (Tag(MetalIngot), 5),
|
||||||
// (Item("common.items.crafting_tools.craftsman_hammer"), 0),
|
// (Item("common.items.tool.craftsman_hammer"), 0),
|
||||||
// ],
|
// ],
|
||||||
//),
|
//),
|
||||||
}
|
}
|
||||||
|
@ -8,7 +8,12 @@
|
|||||||
"hud.crafting.ingredients": "Ingredients:",
|
"hud.crafting.ingredients": "Ingredients:",
|
||||||
"hud.crafting.craft": "Craft",
|
"hud.crafting.craft": "Craft",
|
||||||
"hud.crafting.tool_cata": "Requires:",
|
"hud.crafting.tool_cata": "Requires:",
|
||||||
|
// Crafting Stations
|
||||||
|
"hud.crafting.req_crafting_station": "Requires:",
|
||||||
|
"hud.crafting.anvil": "Anvil",
|
||||||
|
"hud.crafting.cauldron": "Cauldron",
|
||||||
|
"hud.crafting.cooking_pot": "Cooking Pot",
|
||||||
|
"hud.crafting.crafting_bench": "Crafting Bench",
|
||||||
// Tabs
|
// Tabs
|
||||||
"hud.crafting.tabs.all": "All",
|
"hud.crafting.tabs.all": "All",
|
||||||
"hud.crafting.tabs.armor": "Armor",
|
"hud.crafting.tabs.armor": "Armor",
|
||||||
|
@ -2,6 +2,23 @@
|
|||||||
// Vox(specier),
|
// Vox(specier),
|
||||||
// VoxTrans(specifier, offset, (x_rot, y_rot, z_rot), zoom)
|
// VoxTrans(specifier, offset, (x_rot, y_rot, z_rot), zoom)
|
||||||
({
|
({
|
||||||
|
// Crafting Stations
|
||||||
|
Tool("Anvil"): VoxTrans(
|
||||||
|
"voxel.sprite.anvil.anvil-0",
|
||||||
|
(0.5, 0.5, 0.0), (0.0, 60.0, 90.0), 1.0,
|
||||||
|
),
|
||||||
|
Tool("Cauldron"): VoxTrans(
|
||||||
|
"voxel.sprite.cauldron.cauldron-0",
|
||||||
|
(0.0, 0.0, 0.0), (-50.0, 40.0, 30.0), 1.0,
|
||||||
|
),
|
||||||
|
Tool("CookingPot"): VoxTrans(
|
||||||
|
"voxel.sprite.cooking_pot.pot-0",
|
||||||
|
(0.0, 0.0, 0.0), (0.0, 90.0, 90.0), 1.2,
|
||||||
|
),
|
||||||
|
Tool("CraftingBench"): VoxTrans(
|
||||||
|
"voxel.sprite.crafting_bench.crafting_bench-0",
|
||||||
|
(0.0, 0.0, 0.0), (-50.0, 40.0, 20.0), 1.0,
|
||||||
|
),
|
||||||
// Weapons
|
// Weapons
|
||||||
// Diary Example Images
|
// Diary Example Images
|
||||||
Tool("example_utility"): VoxTrans(
|
Tool("example_utility"): VoxTrans(
|
||||||
@ -1921,9 +1938,13 @@
|
|||||||
(0.0, -1.0, 0.0), (-50.0, 40.0, 20.0), 0.8,
|
(0.0, -1.0, 0.0), (-50.0, 40.0, 20.0), 0.8,
|
||||||
),
|
),
|
||||||
// Ingredients
|
// Ingredients
|
||||||
Ingredient("CraftsmanHammer"): VoxTrans( //TODO This should be a 1h hammer!
|
Tool("common.items.tool.craftsman_hammer"): VoxTrans(
|
||||||
"voxel.weapon.hammer.craftsman",
|
"voxel.weapon.hammer.craftsman",
|
||||||
(1.0, 1.0, 0.0), (-135.0, 90.0, 0.0), 1.0,
|
(1.0, -1.0, 0.0), (-135.0, 90.0, 0.0), 0.9,
|
||||||
|
),
|
||||||
|
Ingredient("CraftsmanHammer"): VoxTrans(
|
||||||
|
"voxel.weapon.hammer.craftsman",
|
||||||
|
(1.0, 1.0, 0.0), (-135.0, 90.0, 0.0), 0.8,
|
||||||
),
|
),
|
||||||
Ingredient("SewingSet"): Png(
|
Ingredient("SewingSet"): Png(
|
||||||
"element.items.sewing_set",
|
"element.items.sewing_set",
|
||||||
|
@ -463,6 +463,10 @@
|
|||||||
color: None
|
color: None
|
||||||
),
|
),
|
||||||
// Hammers
|
// Hammers
|
||||||
|
"common.items.tool.craftsman_hammer": (
|
||||||
|
vox_spec: ("weapon.hammer.craftsman", (-2.5, -5.5, -4.5)),
|
||||||
|
color: None
|
||||||
|
),
|
||||||
"common.items.weapons.hammer.hammer_1": (
|
"common.items.weapons.hammer.hammer_1": (
|
||||||
vox_spec: ("weapon.hammer.2hhammer_rusty", (-2.5, -5.5, -4.5)),
|
vox_spec: ("weapon.hammer.2hhammer_rusty", (-2.5, -5.5, -4.5)),
|
||||||
color: None
|
color: None
|
||||||
|
BIN
assets/voxygen/voxel/glider/glider_cultists.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/glider/glider_cultists.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/sprite/anvil/anvil-0.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/sprite/anvil/anvil-0.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/sprite/cauldron/cauldron-0.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/sprite/cauldron/cauldron-0.vox
(Stored with Git LFS)
Binary file not shown.
BIN
assets/voxygen/voxel/sprite/cooking_pot/pot-0.vox
(Stored with Git LFS)
Normal file
BIN
assets/voxygen/voxel/sprite/cooking_pot/pot-0.vox
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -2896,4 +2896,15 @@ CraftingBench: Some((
|
|||||||
],
|
],
|
||||||
wind_sway: 0.0,
|
wind_sway: 0.0,
|
||||||
)),
|
)),
|
||||||
|
// Cooking Pot
|
||||||
|
CookingPot: Some((
|
||||||
|
variations: [
|
||||||
|
(
|
||||||
|
model: "voxygen.voxel.sprite.cooking_pot.pot-0",
|
||||||
|
offset: (-9.0, -10.0, 0.0),
|
||||||
|
lod_axes: (0.0, 0.0, 0.0),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
wind_sway: 0.0,
|
||||||
|
)),
|
||||||
)
|
)
|
||||||
|
BIN
assets/voxygen/voxel/weapon/hammer/craftsman.vox
(Stored with Git LFS)
BIN
assets/voxygen/voxel/weapon/hammer/craftsman.vox
(Stored with Git LFS)
Binary file not shown.
@ -147,6 +147,7 @@ make_case_elim!(
|
|||||||
Forge = 0x78,
|
Forge = 0x78,
|
||||||
Cauldron = 0x79,
|
Cauldron = 0x79,
|
||||||
Anvil = 0x7A,
|
Anvil = 0x7A,
|
||||||
|
CookingPot = 0x7B,
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -192,6 +193,7 @@ impl SpriteKind {
|
|||||||
SpriteKind::Forge => 2.7,
|
SpriteKind::Forge => 2.7,
|
||||||
SpriteKind::Cauldron => 1.27,
|
SpriteKind::Cauldron => 1.27,
|
||||||
SpriteKind::Anvil => 1.1,
|
SpriteKind::Anvil => 1.1,
|
||||||
|
SpriteKind::CookingPot => 1.82,
|
||||||
// TODO: Find suitable heights.
|
// TODO: Find suitable heights.
|
||||||
SpriteKind::BarrelCactus
|
SpriteKind::BarrelCactus
|
||||||
| SpriteKind::RoundCactus
|
| SpriteKind::RoundCactus
|
||||||
@ -321,6 +323,7 @@ impl SpriteKind {
|
|||||||
| SpriteKind::Forge
|
| SpriteKind::Forge
|
||||||
| SpriteKind::Cauldron
|
| SpriteKind::Cauldron
|
||||||
| SpriteKind::Anvil
|
| SpriteKind::Anvil
|
||||||
|
| SpriteKind::CookingPot
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
use super::{
|
use super::{
|
||||||
img_ids::{Imgs, ImgsRot},
|
img_ids::{Imgs, ImgsRot},
|
||||||
item_imgs::{animate_by_pulse, ItemImgs},
|
item_imgs::{animate_by_pulse, ItemImgs, ItemKey::Tool},
|
||||||
Show, TEXT_COLOR, TEXT_DULL_RED_COLOR, TEXT_GRAY_COLOR, UI_HIGHLIGHT_0, UI_MAIN,
|
Show, TEXT_COLOR, TEXT_DULL_RED_COLOR, TEXT_GRAY_COLOR, UI_HIGHLIGHT_0, UI_MAIN,
|
||||||
};
|
};
|
||||||
use crate::{
|
use crate::{
|
||||||
@ -20,6 +20,7 @@ use common::{
|
|||||||
Inventory,
|
Inventory,
|
||||||
},
|
},
|
||||||
recipe::RecipeInput,
|
recipe::RecipeInput,
|
||||||
|
terrain::SpriteKind,
|
||||||
};
|
};
|
||||||
use conrod_core::{
|
use conrod_core::{
|
||||||
color, image,
|
color, image,
|
||||||
@ -59,6 +60,9 @@ widget_ids! {
|
|||||||
ingredient_img[],
|
ingredient_img[],
|
||||||
req_text[],
|
req_text[],
|
||||||
ingredients_txt,
|
ingredients_txt,
|
||||||
|
req_station_title,
|
||||||
|
req_station_img,
|
||||||
|
req_station_txt,
|
||||||
output_img_frame,
|
output_img_frame,
|
||||||
output_img,
|
output_img,
|
||||||
output_amount,
|
output_amount,
|
||||||
@ -657,14 +661,66 @@ impl<'a> Widget for Crafting<'a> {
|
|||||||
.set(state.ids.tags_ing[i], ui);
|
.set(state.ids.tags_ing[i], ui);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Crafting Station Info
|
||||||
// Ingredients Text
|
if recipe.craft_sprite.is_some() {
|
||||||
Text::new(&self.localized_strings.get("hud.crafting.ingredients"))
|
Text::new(
|
||||||
|
&self
|
||||||
|
.localized_strings
|
||||||
|
.get("hud.crafting.req_crafting_station"),
|
||||||
|
)
|
||||||
.top_left_with_margins_on(state.ids.align_ing, 10.0, 5.0)
|
.top_left_with_margins_on(state.ids.align_ing, 10.0, 5.0)
|
||||||
.font_id(self.fonts.cyri.conrod_id)
|
.font_id(self.fonts.cyri.conrod_id)
|
||||||
.font_size(self.fonts.cyri.scale(18))
|
.font_size(self.fonts.cyri.scale(18))
|
||||||
.color(TEXT_COLOR)
|
.color(TEXT_COLOR)
|
||||||
.set(state.ids.ingredients_txt, ui);
|
.set(state.ids.req_station_title, ui);
|
||||||
|
let station_img = match recipe.craft_sprite {
|
||||||
|
Some(SpriteKind::Anvil) => "Anvil",
|
||||||
|
Some(SpriteKind::Cauldron) => "Cauldron",
|
||||||
|
Some(SpriteKind::CookingPot) => "CookingPot",
|
||||||
|
Some(SpriteKind::CraftingBench) => "CraftingBench",
|
||||||
|
None => "CraftsmanHammer",
|
||||||
|
_ => "CraftsmanHammer",
|
||||||
|
};
|
||||||
|
Image::new(animate_by_pulse(
|
||||||
|
&self
|
||||||
|
.item_imgs
|
||||||
|
.img_ids_or_not_found_img(Tool(station_img.to_string())),
|
||||||
|
self.pulse,
|
||||||
|
))
|
||||||
|
.w_h(25.0, 25.0)
|
||||||
|
.down_from(state.ids.req_station_title, 10.0)
|
||||||
|
.parent(state.ids.align_ing)
|
||||||
|
.set(state.ids.req_station_img, ui);
|
||||||
|
|
||||||
|
let station_name = match recipe.craft_sprite {
|
||||||
|
Some(SpriteKind::Anvil) => "hud.crafting.anvil",
|
||||||
|
Some(SpriteKind::Cauldron) => "hud.crafting.cauldron",
|
||||||
|
Some(SpriteKind::CookingPot) => "hud.crafting.cooking_pot",
|
||||||
|
Some(SpriteKind::CraftingBench) => "hud.crafting.crafting_bench",
|
||||||
|
_ => "",
|
||||||
|
};
|
||||||
|
Text::new(&self.localized_strings.get(station_name))
|
||||||
|
.right_from(state.ids.req_station_img, 10.0)
|
||||||
|
.font_id(self.fonts.cyri.conrod_id)
|
||||||
|
.font_size(self.fonts.cyri.scale(14))
|
||||||
|
.color(if self.show.craft_sprite.is_some() {
|
||||||
|
TEXT_COLOR
|
||||||
|
} else {
|
||||||
|
TEXT_DULL_RED_COLOR
|
||||||
|
})
|
||||||
|
.set(state.ids.req_station_txt, ui);
|
||||||
|
}
|
||||||
|
// Ingredients Text
|
||||||
|
let mut ing_txt = Text::new(&self.localized_strings.get("hud.crafting.ingredients"))
|
||||||
|
.font_id(self.fonts.cyri.conrod_id)
|
||||||
|
.font_size(self.fonts.cyri.scale(18))
|
||||||
|
.color(TEXT_COLOR);
|
||||||
|
if recipe.craft_sprite.is_some() {
|
||||||
|
ing_txt = ing_txt.down_from(state.ids.req_station_img, 10.0);
|
||||||
|
} else {
|
||||||
|
ing_txt = ing_txt.top_left_with_margins_on(state.ids.align_ing, 10.0, 5.0);
|
||||||
|
};
|
||||||
|
ing_txt.set(state.ids.ingredients_txt, ui);
|
||||||
|
|
||||||
// Ingredient images with tooltip
|
// Ingredient images with tooltip
|
||||||
if state.ids.ingredient_frame.len() < recipe.inputs().len() {
|
if state.ids.ingredient_frame.len() < recipe.inputs().len() {
|
||||||
|
@ -3487,11 +3487,11 @@ fn try_hotbar_slot_from_input(input: GameInput) -> Option<hotbar::Slot> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn cr_color(combat_rating: f32) -> Color {
|
pub fn cr_color(combat_rating: f32) -> Color {
|
||||||
let common = 4.3;
|
let common = 2.0;
|
||||||
let moderate = 6.0;
|
let moderate = 3.5;
|
||||||
let high = 8.0;
|
let high = 6.5;
|
||||||
let epic = 10.0;
|
let epic = 8.5;
|
||||||
let legendary = 79.0;
|
let legendary = 10.4;
|
||||||
let artifact = 122.0;
|
let artifact = 122.0;
|
||||||
let debug = 200.0;
|
let debug = 200.0;
|
||||||
|
|
||||||
|
@ -127,6 +127,9 @@ impl BlocksOfInterest {
|
|||||||
Some(SpriteKind::Anvil) => {
|
Some(SpriteKind::Anvil) => {
|
||||||
interactables.push((pos, Interaction::Craft(CraftingTab::Weapon)))
|
interactables.push((pos, Interaction::Craft(CraftingTab::Weapon)))
|
||||||
},
|
},
|
||||||
|
Some(SpriteKind::CookingPot) => {
|
||||||
|
interactables.push((pos, Interaction::Craft(CraftingTab::Food)))
|
||||||
|
},
|
||||||
_ => {},
|
_ => {},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -535,9 +535,10 @@ impl Archetype for House {
|
|||||||
0..=1 => SpriteKind::Crate,
|
0..=1 => SpriteKind::Crate,
|
||||||
2 => SpriteKind::Bench,
|
2 => SpriteKind::Bench,
|
||||||
3 => SpriteKind::Anvil,
|
3 => SpriteKind::Anvil,
|
||||||
4 => SpriteKind::Cauldron,
|
4 => SpriteKind::CookingPot,
|
||||||
5 => SpriteKind::CraftingBench,
|
5 => SpriteKind::CraftingBench,
|
||||||
6 => SpriteKind::FireBowlGround,
|
6 => SpriteKind::FireBowlGround,
|
||||||
|
//7 => SpriteKind::Cauldron,
|
||||||
//8 => SpriteKind::Forge,
|
//8 => SpriteKind::Forge,
|
||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
};
|
};
|
||||||
@ -561,7 +562,7 @@ impl Archetype for House {
|
|||||||
center_offset.x,
|
center_offset.x,
|
||||||
center_offset.y,
|
center_offset.y,
|
||||||
z + 100,
|
z + 100,
|
||||||
)) % 12
|
)) % 13
|
||||||
{
|
{
|
||||||
0 => SpriteKind::Planter,
|
0 => SpriteKind::Planter,
|
||||||
1 => SpriteKind::ChairSingle,
|
1 => SpriteKind::ChairSingle,
|
||||||
@ -585,6 +586,7 @@ impl Archetype for House {
|
|||||||
SpriteKind::VialEmpty
|
SpriteKind::VialEmpty
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
11 => SpriteKind::Cauldron,
|
||||||
_ => {
|
_ => {
|
||||||
if dynamic_rng.gen_range(0..2) == 0 {
|
if dynamic_rng.gen_range(0..2) == 0 {
|
||||||
SpriteKind::Bowl
|
SpriteKind::Bowl
|
||||||
|
Loading…
Reference in New Issue
Block a user