From 1d5c50548c18a21b6243f807c9d5d181b9837c51 Mon Sep 17 00:00:00 2001 From: Melecie <97272289+Melecie@users.noreply.github.com> Date: Fri, 21 Jan 2022 11:20:42 +0800 Subject: [PATCH] readding bats --- mods/fantastic_creatures.js | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/mods/fantastic_creatures.js b/mods/fantastic_creatures.js index 89318837..9e4c7a8e 100644 --- a/mods/fantastic_creatures.js +++ b/mods/fantastic_creatures.js @@ -1,8 +1,9 @@ -// Sandboxels: Fantastic Creatures Mod, v1.0 +// Sandboxels: Fantastic Creatures Mod, v0.1 // Author: MelecieDiancie /* === CHANGELOG === +Version 0.1 + Readded chickens and eggs from Fey & More v1.1 + Bats and vampire bats + Hummingbirds @@ -87,3 +88,34 @@ elements.golden_egg = { density: 1200, hidden: true, }; +elements.bat = { + color: "#2b2824", + category: "Fantastic Creatures", + state: "solid", + behavior: [ + "XX|M1%5|XX", + "XX|FX%3|M2", + "XX|XX|M2%10", + ], + burnInto: "ash", + burn:75, + burnTime:25, + density: 750, +}; +elements.vampire_bat = { + color: "#241919", + category: "Fantastic Creatures", + state: "solid", + behavior: [ + "XX|M1%5|XX", + "XX|FX%3|M2", + "XX|XX|M2%10", + ], + reactions: { + "blood": { "elem2": null, "chance": 50 } + } + burnInto: "ash", + burn:75, + burnTime:25, + density: 750, +};