Fetch upstream

master
Dirk 2022-03-31 10:45:42 +02:00
parent 14700ef498
commit 6be5f9555a
13 changed files with 54 additions and 11 deletions

3
.gitmodules vendored
View File

@ -61,9 +61,6 @@
[submodule "irc"]
path = irc
url = ../../Illuna-Minetest/irc
[submodule "wardrobe"]
path = wardrobe
url = ../../Illuna-Minetest/wardrobe
[submodule "wiki"]
path = wiki
url = ../../Illuna-Minetest/wiki

@ -1 +1 @@
Subproject commit a9b8bc4dddfc9c2739c3c02c40497bc7ba1a75b0
Subproject commit ac445a6cd0e4db8ed0750b557830476ddc3c824e

@ -1 +1 @@
Subproject commit 8631a2670bbca0bf8dbc5c128cdf8cde02fbda52
Subproject commit 800f7401613ca35d1b08e078bd79bdf100ab2343

@ -1 +1 @@
Subproject commit 79f9cb329462d7154b974dc82e568293ddc0b0a3
Subproject commit 4c50a02a0ee8f70aeeb3871a7a7d6bd4582ac34e

@ -1 +1 @@
Subproject commit 2e90959a6c4116a99fca6915dcc7f3ccecaf4763
Subproject commit 0b06c7cd450c5ec9a76b3c22a9c57f06e4f8a7c2

2
i3

@ -1 +1 @@
Subproject commit 1dd742e88770a495867ee5d41f57d45bf46684d6
Subproject commit 7e0feefc895950abfba9bf973688211354eb0776

View File

@ -20,6 +20,7 @@ dofile(path .. "/portal.lua")
dofile(path .. "/moreblocks.lua")
dofile(path .. "/functions.lua")
dofile(path .. "/farming.lua")
dofile(path .. "/awards.lua")
-- to be refactored
minetest.register_alias('hangglider:hangglider', 'hangglider_regular:hangglider')

View File

@ -1,2 +1,3 @@
name = illuna_aestival
depends = default, hudbars, bonemeal, cloudlands, moretrees, signs_lib, shields, nether_mobs, nether, livingnether, obsidianstuff, other_worlds, sickles
optional_depends = awards, tmw_slimes, moreores

43
illuna_aestival/src/awards.lua Executable file
View File

@ -0,0 +1,43 @@
-- Custom awards for the illuna_aestival server
if minetest.get_modpath("awards") then
if minetest.get_modpath("tmw_slimes") then
awards.register_award("awards_slime_uber", {
title = "Master of slimes",
description = "Craft an uber slime.",
secret = true,
--icon = "uber_slime.png^[colorize:#FD0:200",
difficulty = 2.0,
trigger = {
type = "craft",
node = "tmw_slimes:uber_slime",
target = 1,
}
})
-- awards.register_award("awards_slime_jungle", {
-- title = "Jungle slime",
-- description = "Craft a jungle slime.",
-- icon = "douglasie_wood.png",
-- --icon = "tmw_slime_inventory.png^[colorize:#0A1:180",
-- difficulty = 1.2,
-- trigger = {
-- type = "craft",
-- node = "tmw_slimes:jungle_slime",
-- target = 1,
-- }
-- })
end
if minetest.get_modpath("moreores") then
awards.register_award("awards_mithril_mineral", {
title = "Mithril lays deep!",
description = "Mine your first mithril mineral.",
--icon = "awards_wow_i_am_diamonds.png^awards_level1.png",
difficulty = 1.4,
trigger = {
type = "dig",
node = "moreores:mineral_mithril",
target = 1
}
})
end
end

View File

@ -394,3 +394,5 @@ minetest.register_node(":illuna:astroportal_block", {
groups = {wood = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 3},
sounds = default.node_sound_wood_defaults(),
})
minetest.register_alias("wardrobe:wardrobe", "homedecor:wardrobe")

@ -1 +1 @@
Subproject commit d3edfbeace32e55820d82cf605439ed8abebf88f
Subproject commit 1d71e2c64ea1def5ec1b797a4d80ccb1876d7af1

@ -1 +1 @@
Subproject commit 40de57687e2fcf612376ab21173fc0c9900547f0
Subproject commit c2b6f474bf4eb982cbd8db99dbd9a80a01657ed6

@ -1 +0,0 @@
Subproject commit 369c088067b35ee28c268ee390095db2dcf40dca