primeiro commit
All checks were successful
Build and Push Image / Build and push image (push) Successful in 3m5s

This commit is contained in:
2024-04-29 21:38:53 -03:00
commit e11bf493a1
2532 changed files with 55878 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Cooked Meat Slab",
legacy_description: "Medium Rare.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 6.0,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Raw Meat Slab",
legacy_description: "Chunk of beastly animal meat, best after cooking.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .45,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Cooked Meat Sliver",
legacy_description: "Medium Rare.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 3.4,
duration: Some(7.5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Raw Meat Sliver",
legacy_description: "Small hunk of beastly animal meat, best after cooking.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .25,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Cooked Bird Meat",
legacy_description: "Best enjoyed with one in each hand.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 4.0,
duration: Some(7.5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Huge Cooked Drumstick",
legacy_description: "Makes for a legendary meal.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 9.5,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Huge Raw Drumstick",
legacy_description: "It's magnificent.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .9,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Raw Bird Meat",
legacy_description: "A hefty drumstick.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .45,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Cooked Fish",
legacy_description: "A fresh cooked seafood steak.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 3.9,
duration: Some(7.5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Raw Fish",
legacy_description: "A steak chopped from a fish, best after cooking.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .45,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Cooked Tough Meat",
legacy_description: "Tastes exotic.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: 4.2,
duration: Some(8.5),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)

View File

@@ -0,0 +1,19 @@
ItemDef(
legacy_name: "Raw Tough Meat",
legacy_description: "Peculiar bit of meat, best after cooking.",
kind: Consumable(
kind: Food,
effects: One(
Buff((
kind: Saturation,
data: (
strength: .36,
duration: Some(10),
),
cat_ids: [Natural],
)),
)
),
quality: Common,
tags: [Food],
)