Minetest_Game_Mushroom_Fork/mods/specific to Mushroom Fork/runes/buff_table.lua

258 lines
8.9 KiB
Lua

-- runes mod for Minetest
-- Copyright © 2020 Alex Yst <mailto:copyright@y.st>
-- This program is free software; you can redistribute it and/or
-- modify it under the terms of the GNU Lesser General Public
-- License as published by the Free Software Foundation; either
-- version 2.1 of the License, or (at your option) any later version.
-- This software is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-- Lesser General Public License for more details.
-- You should have received a copy of the GNU Lesser General Public
-- License along with this program. If not, see
-- <https://www.gnu.org./licenses/>.
-- We don't have enough buffs, so multiple runes provide the same buff.
--
-- For now, I'm not implementing any of the real buffs, and am instead
-- just implementing a single debug buff. This will likely be corrected
-- in the next commit, but there still won't be enough buffs to go
-- around and each buff will be granted by several runes.
return {
axe = {
sand = "toter",
coal_lump = "toter",
iron_lump = "toter",
sapling = "toter",
mese_crystal = "durable",
copper_lump = "toter",
diamond = "durable",
gold_lump = "toter",
junglesapling = "toter",
seed_cotton = "rapid",
seed_wheat = "rapid",
string = "rapid",
wheat = "rapid",
cotton = "rapid",
pine_sapling = "toter",
acacia_sapling = "toter",
mushroom_brown = "toter",
mushroom_red = "toter",
mushroom_spores_brown = "toter",
mushroom_spores_red = "toter",
aspen_sapling = "toter",
flint = "toter",
coral_skeleton = "toter",
acacia_bush_sapling = "toter",
bush_sapling = "toter",
tin_lump = "toter",
blueberries = "toter",
blueberry_bush_sapling = "toter",
ice = "toter",
pine_bush_sapling = "toter",
dry_dirt = "toter",
},
fire_starter = {
sand = "debug",
coal_lump = "debug",
iron_lump = "debug",
sapling = "debug",
mese_crystal = "durable",
copper_lump = "debug",
diamond = "durable",
gold_lump = "debug",
junglesapling = "debug",
seed_cotton = "debug",
seed_wheat = "debug",
string = "debug",
wheat = "debug",
cotton = "debug",
pine_sapling = "debug",
acacia_sapling = "debug",
mushroom_brown = "debug",
mushroom_red = "debug",
mushroom_spores_brown = "debug",
mushroom_spores_red = "debug",
aspen_sapling = "debug",
flint = "debug",
coral_skeleton = "debug",
acacia_bush_sapling = "debug",
bush_sapling = "debug",
tin_lump = "debug",
blueberries = "debug",
blueberry_bush_sapling = "debug",
ice = "debug",
pine_bush_sapling = "debug",
dry_dirt = "debug",
},
pick = {
sand = "rapid",
coal_lump = "rapid",
iron_lump = "rapid",
sapling = "rapid",
mese_crystal = "durable",
copper_lump = "rapid",
diamond = "durable",
gold_lump = "rapid",
junglesapling = "rapid",
seed_cotton = "rapid",
seed_wheat = "rapid",
string = "rapid",
wheat = "rapid",
cotton = "rapid",
pine_sapling = "rapid",
acacia_sapling = "rapid",
mushroom_brown = "rapid",
mushroom_red = "rapid",
mushroom_spores_brown = "rapid",
mushroom_spores_red = "rapid",
aspen_sapling = "rapid",
flint = "rapid",
coral_skeleton = "rapid",
acacia_bush_sapling = "rapid",
bush_sapling = "rapid",
tin_lump = "rapid",
blueberries = "rapid",
blueberry_bush_sapling = "rapid",
ice = "rapid",
pine_bush_sapling = "rapid",
dry_dirt = "rapid",
},
hoe = {
sand = "debug",
coal_lump = "debug",
iron_lump = "debug",
sapling = "debug",
mese_crystal = "durable",
copper_lump = "debug",
diamond = "durable",
gold_lump = "debug",
junglesapling = "debug",
seed_cotton = "debug",
seed_wheat = "debug",
string = "debug",
wheat = "debug",
cotton = "debug",
pine_sapling = "debug",
acacia_sapling = "debug",
mushroom_brown = "debug",
mushroom_red = "debug",
mushroom_spores_brown = "debug",
mushroom_spores_red = "debug",
aspen_sapling = "debug",
flint = "debug",
coral_skeleton = "debug",
acacia_bush_sapling = "debug",
bush_sapling = "debug",
tin_lump = "debug",
blueberries = "debug",
blueberry_bush_sapling = "debug",
ice = "debug",
pine_bush_sapling = "debug",
dry_dirt = "debug",
},
screwdriver = {
sand = "debug",
coal_lump = "debug",
iron_lump = "debug",
sapling = "debug",
mese_crystal = "durable",
copper_lump = "debug",
diamond = "durable",
gold_lump = "debug",
junglesapling = "debug",
seed_cotton = "debug",
seed_wheat = "debug",
string = "debug",
wheat = "debug",
cotton = "debug",
pine_sapling = "debug",
acacia_sapling = "debug",
mushroom_brown = "debug",
mushroom_red = "debug",
mushroom_spores_brown = "debug",
mushroom_spores_red = "debug",
aspen_sapling = "debug",
flint = "debug",
coral_skeleton = "debug",
acacia_bush_sapling = "debug",
bush_sapling = "debug",
tin_lump = "debug",
blueberries = "debug",
blueberry_bush_sapling = "debug",
ice = "debug",
pine_bush_sapling = "debug",
dry_dirt = "debug",
},
shovel = {
sand = "rapid",
coal_lump = "rapid",
iron_lump = "rapid",
sapling = "thirst",
mese_crystal = "durable",
copper_lump = "rapid",
diamond = "durable",
gold_lump = "rapid",
junglesapling = "thirst",
seed_cotton = "rapid",
seed_wheat = "rapid",
string = "rapid",
wheat = "rapid",
cotton = "rapid",
pine_sapling = "thirst",
acacia_sapling = "thirst",
mushroom_brown = "spreader",
mushroom_red = "spreader",
mushroom_spores_brown = "spreader",
mushroom_spores_red = "spreader",
aspen_sapling = "thirst",
flint = "thirst",
coral_skeleton = "rapid",
acacia_bush_sapling = "thirst",
bush_sapling = "thirst",
tin_lump = "rapid",
blueberries = "transplanter",
blueberry_bush_sapling = "thirst",
ice = "rapid",
pine_bush_sapling = "thirst",
dry_dirt = "rapid",
},
sword = {
sand = "rapid",
coal_lump = "rapid",
iron_lump = "rapid",
sapling = "thirst",
mese_crystal = "durable",
copper_lump = "rapid",
diamond = "durable",
gold_lump = "rapid",
junglesapling = "thirst",
seed_cotton = "rapid",
seed_wheat = "rapid",
string = "rapid",
wheat = "rapid",
cotton = "rapid",
pine_sapling = "thirst",
acacia_sapling = "thirst",
mushroom_brown = "pruner",
mushroom_red = "pruner",
mushroom_spores_brown = "pruner",
mushroom_spores_red = "pruner",
aspen_sapling = "thirst",
flint = "thirst",
coral_skeleton = "rapid",
acacia_bush_sapling = "thirst",
bush_sapling = "thirst",
tin_lump = "rapid",
blueberries = "pruner",
blueberry_bush_sapling = "thirst",
ice = "rapid",
pine_bush_sapling = "thirst",
dry_dirt = "rapid",
},
}