1
0
mirror of https://github.com/poikilos/trmp_minetest_game.git synced 2025-07-21 09:10:23 +02:00

initial upload

This commit is contained in:
stub
2017-11-28 23:38:45 +03:00
commit 913b23474e
22 changed files with 144 additions and 0 deletions

2
trm_dye/depends.txt Normal file
View File

@ -0,0 +1,2 @@
dye
treasurer

4
trm_dye/init.lua Normal file
View File

@ -0,0 +1,4 @@
local colors = {"white", "lightgrey", "grey", "darkgrey", "black", "red", "orange", "yellow", "lime", "green", "aqua", "cyan", "sky_blue", "blue", "violet", "magenta", "red_violet"}
for i=1,#colors do
treasurer.register_treasure("dye:"..colors[i], 0.0117, 1, {1,6}, nil, "crafting_component" )
end