Update init.lua

master
NewbProgrammer101 2017-12-12 17:15:29 -06:00 committed by GitHub
parent 9d5d29155c
commit 2657ddbfcb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 8 deletions

View File

@ -3,13 +3,15 @@
--sizes are: 1X1, 1X2 (wide), 2X1 (tall), 2X2
local paintings = {
--{"name/texture", "description", "size"}
{"hummingbird", "Hummingbird Painting", "2X2"},
{"dragon", "Dragon Painting", "2X1"},
{"landscape", "Landscape Painting", "1X2"},
{"forest", "Forest Painting", "1X2"},
{"waterlilie", "Water Lily Painting", "1X1"},
{"cthulhu", "Cthulhu Painting", "2X2"},
{"mistiriusgirl", "Mysterious Girl Painting", "1X2"},
{"hummingbird", "Hummingbird Painting", "2X2", "D00Med"},
{"dragon", "Dragon Painting", "2X1", "D00Med"},
{"landscape", "Landscape Painting", "1X2", "D00Med"},
{"forest", "Forest Painting", "1X2", "D00Med"},
{"waterlilie", "Water Lily Painting", "1X1", "toby109tt"},
{"cthulhu", "Cthulhu Painting", "2X2", "toby109tt"},
{"mistiriusgirl", "Mysterious Girl Painting", "1X2", "toby109tt"},
{"possessedwoman", "Possessed Woman Painting", "1X2", "D00Med"},
{"rose", "Rose Painting", "1X1", "toby109tt"},
}
local small = {-0.5, -0.5, 0.4375, 0.5, 0.5, 0.5}
@ -74,4 +76,4 @@ minetest.register_node("paintings:easel", {
end,
sounds = default.node_sound_wood_defaults()
})
]]
]]