mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
Fixed Flowers and Grass items
This commit is contained in:
parent
6bd20c64f8
commit
ae975a67f4
@ -1,5 +1,7 @@
|
||||
Item(
|
||||
name: "Blue Flower",
|
||||
description: "Matches the color of the sky.",
|
||||
kind: Ingredient,
|
||||
kind: Ingredient(
|
||||
kind: Flower,
|
||||
)
|
||||
)
|
||||
|
@ -1,5 +1,7 @@
|
||||
Item(
|
||||
name: "Pink Flower",
|
||||
description: "Looks like a lollipop.",
|
||||
kind: Ingredient,
|
||||
kind: Ingredient(
|
||||
kind: Flower,
|
||||
)
|
||||
)
|
||||
|
@ -1,5 +1,7 @@
|
||||
Item(
|
||||
name: "Red Flower",
|
||||
description: "Roses are red...",
|
||||
kind: Ingredient,
|
||||
kind: Ingredient(
|
||||
kind: Flower,
|
||||
)
|
||||
)
|
||||
|
@ -1,5 +1,7 @@
|
||||
Item(
|
||||
name: "Sunflower",
|
||||
description: "Smells like summer.",
|
||||
kind: Ingredient,
|
||||
kind: Ingredient(
|
||||
kind: Flower,
|
||||
)
|
||||
)
|
||||
|
@ -1,5 +1,7 @@
|
||||
Item(
|
||||
name: "White flower",
|
||||
description: "Pure and precious.",
|
||||
kind: Ingredient,
|
||||
kind: Ingredient(
|
||||
kind: Flower,
|
||||
)
|
||||
)
|
||||
|
@ -1,5 +1,7 @@
|
||||
Item(
|
||||
name: "Yellow Flower",
|
||||
description: "Glows like the sun.",
|
||||
kind: Ingredient,
|
||||
kind: Ingredient(
|
||||
kind: Flower,
|
||||
)
|
||||
)
|
||||
|
@ -1,5 +1,7 @@
|
||||
Item(
|
||||
name: "Long Grass",
|
||||
description: "Greener than an orc's snout.",
|
||||
kind: Ingredient,
|
||||
kind: Ingredient(
|
||||
kind: Grass,
|
||||
)
|
||||
)
|
||||
|
@ -1,5 +1,7 @@
|
||||
Item(
|
||||
name: "Medium Grass",
|
||||
description: "Greener than an orc's snout.",
|
||||
kind: Ingredient,
|
||||
kind: Ingredient(
|
||||
kind: Grass,
|
||||
)
|
||||
)
|
||||
|
@ -1,5 +1,7 @@
|
||||
Item(
|
||||
name: "Short Grass",
|
||||
description: "Greener than an orc's snout.",
|
||||
kind: Ingredient,
|
||||
kind: Ingredient(
|
||||
kind: Grass,
|
||||
)
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user