]> git.lizzy.rs Git - elidragon.git/commitdiff
test
authorElias Fleckenstein <eliasfleckenstein@web.de>
Sun, 24 May 2020 14:40:46 +0000 (16:40 +0200)
committerElias Fleckenstein <eliasfleckenstein@web.de>
Sun, 24 May 2020 14:40:46 +0000 (16:40 +0200)
quests.lua
skyblock.lua

index cedb3947ea9e132c75b2cd0c13a1e835bf9b4548..7c166c2e19f7198287deb58bdec930fd0bc5938e 100644 (file)
@@ -45,7 +45,7 @@ elidragon.quests.list = {
                action = "dig",
                items = {"default:stone"},
                reward = "default:chest_locked",
-               goal = "Stoneage",
+               goal = "Stone Age",
        }
 }
 
index 5d733579d920cbf2ecbe00b2d13c02964c3aa7ab..e3800a28b6a951d7e183598630b0d9e8160e73dd 100755 (executable)
@@ -227,14 +227,24 @@ minetest.after(0, function()
                        node = "default:stone_with_mese"
                elseif math.random() < 0.01 then
                        node = "default:stone_with_gold"
+               elseif math.random() < 0.01 then
+                       node = "technic:mineral_chromium"
+               elseif math.random() < 0.01 then
+                       node = "technic:mineral_zinc"
+               elseif math.random() < 0.012 then
+                       node = "technic:mineral_uranium"
                elseif math.random() < 0.015 then
                        node = "default:stone_with_tin"
                elseif math.random() < 0.02 then
                        node = "default:stone_with_copper"
+               elseif math.random() < 0.025 then
+                       node = "technic:mineral_sulfur"
                elseif math.random() < 0.033 then
                        node = "default:stone_with_iron"
                elseif math.random() < 0.04 then
                        node = "moreores:mineral_silver"
+               elseif math.random() < 0.045 then
+                       node = "technic:mineral_lead"
                elseif math.random() < 0.05 then
                        node = "default:stone_with_coal"
                else
@@ -301,8 +311,9 @@ minetest.register_craft({
 minetest.register_craft({
        output = "default:desert_stone",
        recipe = {
-               {"default:desert_sand", "default:desert_sand"},
-               {"default:desert_sand", "default:desert_sand"},
+               {"default:desert_sand", "default:desert_sand", "default:desert_sand"},
+               {"default:desert_sand", "default:desert_sand", "default:desert_sand"},
+               {"default:desert_sand", "default:desert_sand", "default:desert_sand"},
        }
 })