added sakura door
This commit is contained in:
parent
62f8e138d5
commit
8d0b9b0d10
@ -15,8 +15,8 @@ Ethereal Mapgen mod for Minetest (works on all except v6)
|
||||
- Added Sakura biome, pink sakura trees and saplings
|
||||
- 1 in 10 chance of sakura sapling growing into white sakura
|
||||
- Bamboo grows in higher elevation while sakura grows in lower
|
||||
- Added sakura wood stairs, fence and gates
|
||||
|
||||
- Added sakura wood, stairs, fence, gate and door
|
||||
|
||||
### 1.25
|
||||
|
||||
- Converted .mts files into schematic tables for easier editing
|
||||
|
18
gates.lua
18
gates.lua
@ -85,3 +85,21 @@ minetest.register_alias("ethereal:fencegate_junglewood_closed", "doors:gate_jung
|
||||
|
||||
minetest.register_alias("ethereal:fencegate_pine_open", "doors:gate_pine_wood_open")
|
||||
minetest.register_alias("ethereal:fencegate_pine_closed", "doors:gate_pine_wood_closed")
|
||||
|
||||
-- sakura door
|
||||
doors.register_door("sakuragi:tobira", {
|
||||
tiles = {
|
||||
{name = "ethereal_sakura_door.png", backface_culling = true}
|
||||
},
|
||||
description = S("Sakura Wood Door"),
|
||||
inventory_image = "ethereal_sakura_door_inv.png",
|
||||
groups = {
|
||||
snappy = 1, choppy = 2, oddly_breakable_by_hand = 2,
|
||||
flammable = 2
|
||||
},
|
||||
recipe = {
|
||||
{"group:stick", "default:paper"},
|
||||
{"default:paper", "group:stick"},
|
||||
{"ethereal:sakura_wood", "ethereal:sakura_wood"}
|
||||
}
|
||||
})
|
||||
|
BIN
textures/ethereal_sakura_door.png
Normal file
BIN
textures/ethereal_sakura_door.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 981 B |
BIN
textures/ethereal_sakura_door_inv.png
Normal file
BIN
textures/ethereal_sakura_door_inv.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 220 B |
Loading…
Reference in New Issue
Block a user