more meat

This commit is contained in:
jshipsey 2021-05-05 23:19:55 -04:00 committed by Marcel Märtens
parent ca907f1b87
commit 451ccf8d73
18 changed files with 103 additions and 30 deletions

View File

@ -1,8 +1,8 @@
ItemDef(
name: "Cooked Slab of Beef",
name: "Cooked Meat Slab",
description: "Medium Rare.",
kind: Consumable(
kind: "BeefLargeCooked",
kind: "BeastLargeCooked",
effect: [
Buff((
kind: Saturation,

View File

@ -1,8 +1,8 @@
ItemDef(
name: "Raw Beef Slab",
description: "Chunk of animal meat, best after cooking.",
name: "Raw Meat Slab",
description: "Chunk of beastly animal meat, best after cooking.",
kind: Consumable(
kind: "BeefLargeRaw",
kind: "BeastLargeRaw",
effect: [
Buff((
kind: Saturation,

View File

@ -1,8 +1,8 @@
ItemDef(
name: "Cooked Sliver of Beef",
name: "Cooked Meat Sliver",
description: "Medium Rare.",
kind: Consumable(
kind: "BeefSmallCooked",
kind: "BeastSmallCooked",
effect: [
Buff((
kind: Saturation,

View File

@ -1,8 +1,8 @@
ItemDef(
name: "Raw Beef Sliver",
description: "Small hunk of animal meat, best after cooking.",
name: "Raw Meat Sliver",
description: "Small hunk of beastly animal meat, best after cooking.",
kind: Consumable(
kind: "BeefSmallRaw",
kind: "BeastSmallRaw",
effect: [
Buff((
kind: Saturation,

View File

@ -0,0 +1,22 @@
ItemDef(
name: "Cooked Tough Meat",
description: "Tastes exotic.",
kind: Consumable(
kind: "ToughCooked",
effect: [
Buff((
kind: Saturation,
data: (
strength: 20.0,
duration: Some((
secs: 10,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: Common,
tags: [Food],
)

View File

@ -0,0 +1,22 @@
ItemDef(
name: "Raw Tough Meat",
description: "Peculiar bit of meat, best after cooking.",
kind: Consumable(
kind: "ToughRaw",
effect: [
Buff((
kind: Saturation,
data: (
strength: 12.0,
duration: Some((
secs: 3,
nanos: 0,
)),
),
cat_ids: [Natural],
)),
]
),
quality: Common,
tags: [Food],
)

View File

@ -1,4 +1,5 @@
[
(1.0, Item("common.items.food.meat.fish_raw")),
(1.5, Item("common.items.food.meat.tough_raw")),
(0.5, Item("common.items.food.meat.tough_raw")),
(3.0, Item("common.items.crafting_ing.leather_scraps")),
]

View File

@ -1,5 +1,5 @@
[
(1.5, Item("common.items.food.meat.beef_small_raw")),
(0.5, Item("common.items.food.meat.beef_large_raw")),
(1.5, Item("common.items.food.meat.beast_small_raw")),
(0.5, Item("common.items.food.meat.beast_large_raw")),
(3.0, Item("common.items.crafting_ing.leather_scraps")),
]

View File

@ -150,10 +150,24 @@
],
craft_sprite: Some(CookingPot),
),
"Beef_small_cooked": (
output: ("common.items.food.meat.beef_small_cooked", 1),
"beast_small_cooked": (
output: ("common.items.food.meat.beast_small_cooked", 1),
inputs: [
(Item("common.items.food.meat.beef_small_raw"), 1),
(Item("common.items.food.meat.beast_small_raw"), 1),
],
craft_sprite: Some(CookingPot),
),
"beast_large_cooked": (
output: ("common.items.food.meat.beast_large_cooked", 1),
inputs: [
(Item("common.items.food.meat.beast_large_raw"), 1),
],
craft_sprite: Some(CookingPot),
),
"tough_cooked": (
output: ("common.items.food.meat.tough_cooked", 1),
inputs: [
(Item("common.items.food.meat.tough_raw"), 1),
],
craft_sprite: Some(CookingPot),
),

View File

@ -1893,20 +1893,28 @@
"voxel.sprite.food.meat.fish_cooked",
(0.0, 0.0, 0.0), (-20.0, 10.0, 20.0), 0.9,
),
Consumable("BeefSmallRaw"): VoxTrans(
"voxel.sprite.food.meat.beef_small_raw",
Consumable("BeastSmallRaw"): VoxTrans(
"voxel.sprite.food.meat.beast_small_raw",
(0.0, 0.0, 0.0), (-50.0, 10.0, 0.0), 1.0,
),
Consumable("BeefSmallCooked"): VoxTrans(
"voxel.sprite.food.meat.beef_small_cooked",
Consumable("BeastSmallCooked"): VoxTrans(
"voxel.sprite.food.meat.beast_small_cooked",
(0.0, 0.0, 0.0), (-50.0, 20.0, 0.0), 1.0,
),
Consumable("BeefLargeRaw"): VoxTrans(
"voxel.sprite.food.meat.beef_large_raw",
Consumable("ToughRaw"): VoxTrans(
"voxel.sprite.food.meat.tough_raw",
(0.0, 0.0, 0.0), (-50.0, 10.0, 0.0), 1.0,
),
Consumable("ToughCooked"): VoxTrans(
"voxel.sprite.food.meat.tough_cooked",
(0.0, 0.0, 0.0), (-50.0, 20.0, 0.0), 1.0,
),
Consumable("BeastLargeRaw"): VoxTrans(
"voxel.sprite.food.meat.beast_large_raw",
(-1.0, 0.0, 0.0), (-80.0, 40.0, 0.0), 0.8,
),
Consumable("BeefLargeCooked"): VoxTrans(
"voxel.sprite.food.meat.beef_large_cooked",
Consumable("BeastLargeCooked"): VoxTrans(
"voxel.sprite.food.meat.beast_large_cooked",
(-1.0, 0.0, 0.0), (-80.0, 40.0, 0.0), 0.8,
),
Consumable("PlainSalad"): VoxTrans(

BIN
assets/voxygen/voxel/sprite/food/meat/beast_large_cooked.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/sprite/food/meat/beast_large_raw.vox (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
assets/voxygen/voxel/sprite/food/meat/tough_cooked.vox (Stored with Git LFS) Normal file

Binary file not shown.

BIN
assets/voxygen/voxel/sprite/food/meat/tough_raw.vox (Stored with Git LFS) Normal file

Binary file not shown.