Skip to content

Commit 6955afe

Browse files
author
ChefZander
committed
Mystery terrarium
1 parent c70c634 commit 6955afe

File tree

4 files changed

+28
-1
lines changed

4 files changed

+28
-1
lines changed

mods/sbz_decor/init.lua

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,22 @@ minetest.register_craft({
104104
recipe = { "sbz_decor:factory_floor", "sbz_decor:factory_floor", "sbz_chem:gold_powder", "sbz_chem:gold_powder" }
105105
})
106106

107+
minetest.register_node("sbz_decor:mystery_terrarium", {
108+
description = "Mystery Terrarium",
109+
tiles = {
110+
{ name = "mystery_terrarium.png", animation = { type = "vertical_frames", length = 1 } },
111+
},
112+
groups = { matter = 1, cracky = 3, explody = 3},
113+
sunlight_propagates = true,
114+
walkable = true,
115+
sounds = sbz_api.sounds.matter(),
116+
})
117+
minetest.register_craft({
118+
output = "sbz_decor:mystery_terrarium",
119+
type = "shapeless",
120+
recipe = {"sbz_bio:habitat_regulator", "sbz_bio:screen_inverter_potion", "sbz_chem:thorium_fluid_cell"}
121+
})
122+
107123
local MP = minetest.get_modpath("sbz_decor")
108124
dofile(MP .. "/signs.lua")
109125
dofile(MP .. "/cnc.lua")
988 Bytes
Loading

mods/sbz_progression/init.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ local achievement_table = {
109109
['sbz_power:powered_lamp_off'] = 'Powered Lights',
110110
['sbz_power:super_powered_lamp_off'] = 'Powered Lights',
111111
['unifieddyes:coloring_tool'] = 'Coloring Tool',
112+
['sbz_decor:mystery_terrarium'] = 'Mystery Terrarium',
112113
['sbz_resources:jetpack'] = 'Jetpack',
113114
['sbz_resources:drill'] = 'Electric Drill',
114115
['sbz_meteorites:meteorite_maker_off'] = 'Meteorite Maker',

mods/sbz_progression/quests/Decorator.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,14 @@ More fancy traditional bricks to build with.
185185

186186
### Meta
187187

188-
Requires: Clay
188+
Requires: Clay
189+
190+
## Mystery Terrarium
191+
192+
### Text
193+
194+
I wonder what's in there...
195+
196+
### Meta
197+
198+
Requires: Growing Plants, Planet Ores

0 commit comments

Comments
 (0)