diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cc9432..500fa71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ # [Jul 26th 2024] Unnamed Minor Update +- Vines are now flammable +- Players now deal 10000 damage in creative mode +- Added water bottles + +# [Jul 26th 2024] Unnamed Minor Update + - Add large jungle trees - CamelCase all schematics - Rename tree* schematics to proper tree names diff --git a/mods/pyutest/pyutest_core/flowers.lua b/mods/pyutest/pyutest_core/flowers.lua index d352954..0734422 100644 --- a/mods/pyutest/pyutest_core/flowers.lua +++ b/mods/pyutest/pyutest_core/flowers.lua @@ -67,7 +67,8 @@ PyuTestCore.make_flower("pyutest_core:black_rose", "Black Rose", "black-rose.png PyuTestCore.make_node("pyutest_core:vines", "Vines", { block = PyuTestCore.BLOCK_BREAKABLE_INSTANT, - attached_node = 1 + attached_node = 1, + flammable = 1 }, {"vines.png"}, { drawtype = "signlike", paramtype = "light", diff --git a/mods/pyutest/pyutest_core/player.lua b/mods/pyutest/pyutest_core/player.lua index 9cc67af..dc1513c 100644 --- a/mods/pyutest/pyutest_core/player.lua +++ b/mods/pyutest/pyutest_core/player.lua @@ -71,7 +71,7 @@ if minetest.is_creative_enabled("") then } }, punch_attack_uses = 0, - damage_groups = {fleshy = 100} + damage_groups = {fleshy = 10000} } }) else diff --git a/mods/pyutest/pyutest_core/tools.lua b/mods/pyutest/pyutest_core/tools.lua index 7e1c481..f7b6d7c 100644 --- a/mods/pyutest/pyutest_core/tools.lua +++ b/mods/pyutest/pyutest_core/tools.lua @@ -158,3 +158,4 @@ PyuTestCore.make_item("pyutest_core:windball", "Windball", {}, "windball.png", { PyuTestCore.make_food("pyutest_core:apple", "Apple", "apple.png", 5) PyuTestCore.make_food("pyutest_core:bread", "Bread", "bread.png", 3) +PyuTestCore.make_food("pyutest_core:water_bottle", "Water Bottle", "water-bottle.png", 2) diff --git a/textures/water-bottle.png b/textures/water-bottle.png new file mode 100644 index 0000000..fc09ee4 Binary files /dev/null and b/textures/water-bottle.png differ