summaryrefslogtreecommitdiff
path: root/misc_overrides
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 20:02:19 -0400
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2016-04-01 21:09:33 -0400
commitda66780a569712c23ae4f2996cfb4608a9f9d69d (patch)
tree217556029a78bc23ad4564720afc86de97228a04 /misc_overrides
parent615b22df4d423aded3613db7716943a2f389b047 (diff)
downloaddreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar.gz
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar.bz2
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.tar.xz
dreambuilder_modpack-da66780a569712c23ae4f2996cfb4608a9f9d69d.zip
copy all standard Dreambuilder mods in from the old subgame
(exactly as last supplied there, updates to these mods will follow later)
Diffstat (limited to 'misc_overrides')
-rw-r--r--misc_overrides/depends.txt8
-rw-r--r--misc_overrides/init.lua47
-rw-r--r--misc_overrides/textures/technic_chest_form_bg.pngbin0 -> 98978 bytes
3 files changed, 55 insertions, 0 deletions
diff --git a/misc_overrides/depends.txt b/misc_overrides/depends.txt
new file mode 100644
index 0000000..22e37c4
--- /dev/null
+++ b/misc_overrides/depends.txt
@@ -0,0 +1,8 @@
+default
+farming
+biome_lib
+youngtrees
+ferns
+dryplants
+farming_plus
+technic_chests
diff --git a/misc_overrides/init.lua b/misc_overrides/init.lua
new file mode 100644
index 0000000..c3dd0a5
--- /dev/null
+++ b/misc_overrides/init.lua
@@ -0,0 +1,47 @@
+-- This file just makes some tweaks to the various default plants and some
+-- non-default ones that depend on biome_lib, to make them wave if the
+-- appropriate shader is enabled. This code is temporary and will be trimmed
+-- down as the mods supplying those objects are updated.
+
+-- default stuff
+
+for i = 1, 5 do
+ minetest.override_item("default:grass_"..i, { waving = 1 })
+end
+
+minetest.override_item("default:junglegrass", { waving = 1 })
+
+-- farming, farming_plus
+
+for i = 1, 8 do
+ minetest.override_item("farming:wheat_"..i, { waving = 1 })
+ minetest.override_item("farming:cotton_"..i, { waving = 1 })
+end
+
+minetest.override_item("farming:weed", { waving = 1 })
+
+-- Undergrowth modpack
+
+minetest.override_item("youngtrees:youngtree_top", { waving = 1 })
+
+-- Ferns mod
+
+for i = 1, 3 do
+ minetest.override_item("ferns:fern_0"..i, { waving = 1 })
+end
+
+minetest.override_item("ferns:tree_fern_leaves", { waving = 1 })
+
+-- Dryplants mod
+
+minetest.override_item("dryplants:reedmace_height_2", { waving = 1 })
+minetest.override_item("dryplants:reedmace_height_3", { waving = 1 })
+minetest.override_item("dryplants:reedmace_height_3_spikes", { waving = 1 })
+minetest.override_item("dryplants:juncus", { waving = 1 })
+minetest.override_item("dryplants:juncus_02", { waving = 1 })
+
+-- Farming plus
+
+minetest.override_item("farming_plus:banana_leaves", { waving = 1 })
+minetest.override_item("farming_plus:cocoa_leaves", { waving = 1 })
+
diff --git a/misc_overrides/textures/technic_chest_form_bg.png b/misc_overrides/textures/technic_chest_form_bg.png
new file mode 100644
index 0000000..ea26ae4
--- /dev/null
+++ b/misc_overrides/textures/technic_chest_form_bg.png
Binary files differ