readding bats
This commit is contained in:
parent
af3d3c2f47
commit
1d5c50548c
|
|
@ -1,8 +1,9 @@
|
||||||
// Sandboxels: Fantastic Creatures Mod, v1.0
|
// Sandboxels: Fantastic Creatures Mod, v0.1
|
||||||
// Author: MelecieDiancie
|
// Author: MelecieDiancie
|
||||||
|
|
||||||
/*
|
/*
|
||||||
=== CHANGELOG ===
|
=== CHANGELOG ===
|
||||||
|
Version 0.1
|
||||||
+ Readded chickens and eggs from Fey & More v1.1
|
+ Readded chickens and eggs from Fey & More v1.1
|
||||||
+ Bats and vampire bats
|
+ Bats and vampire bats
|
||||||
+ Hummingbirds
|
+ Hummingbirds
|
||||||
|
|
@ -87,3 +88,34 @@ elements.golden_egg = {
|
||||||
density: 1200,
|
density: 1200,
|
||||||
hidden: true,
|
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,
|
||||||
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue