Minor Update: Establish Game Core; Try To Stop Breaking Changes, Added Dandelions

This commit is contained in:
IamPyu 2024-06-08 22:51:01 -06:00
parent 3fb0ef5e43
commit 828b5eb4a4
2 changed files with 14 additions and 1 deletions

View File

@ -177,7 +177,7 @@ PyuTestCore.make_node("pyutest_core:glass", "glass", "Glass", {
sunlight_propagates = true
})
PyuTestCore.make_node("pyutest_core:flower", "flower", "Flower", {
PyuTestCore.make_node("pyutest_core:flower", "rose", "Rose", {
snappy = 1,
block = PyuTestCore.BLOCK_BREAKABLE_INSTANT,
}, {"flower.png"}, {
@ -190,6 +190,19 @@ PyuTestCore.make_node("pyutest_core:flower", "flower", "Flower", {
inventory_image = "flower.png"
})
PyuTestCore.make_node("pyutest_core:flower2", "dandelion", "Dandelion", {
snappy = 1,
block = PyuTestCore.BLOCK_BREAKABLE_INSTANT,
}, {"flower2.png"}, {
drawtype = "plantlike",
walkable = false,
waving = 1,
buildable_to = true,
paramtype = "light",
sunlight_propagates = true,
inventory_image = "flower2.png"
})
PyuTestCore.make_node("pyutest_core:trapdoor", "trapdoor", "Trapdoor", {
choppy = 1,
block = PyuTestCore.BLOCK_BREAKABLE_NORMAL

Binary file not shown.

After

Width:  |  Height:  |  Size: 161 B