Differences From Artifact [7b8c107461]:
- File tap.lua — part of check-in [01f4ba8ddc] at 2021-06-28 15:38:59 on branch trunk — more work on kegs and liquid, add taps and troughs for tapping trees and obtaining sap, add tree lore, add infuser module system, various tweaks, fix up bugged itemclass logic, add scaffold for crafting extension mechanism (user: lexi, size: 4983) [annotate] [blame] [check-ins using]
To Artifact [17fb78473a]:
- File tap.lua — part of check-in [c71731cf58] at 2021-07-03 02:25:42 on branch trunk — many bug fixers, some minor refactoring, allow non-drinkable potions to be empowered in various ways, allow gods to be petitioned for recipes (next up: cookbooks!) (user: lexi, size: 5025) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 |
local log = sorcery.logger('tap') minetest.register_node('sorcery:tap',{ description = 'Tree Tap'; drawtype = 'mesh'; mesh = 'sorcery-tap.obj'; tiles = { 'default_copper_block.png'; 'default_steel_block.png'; }; groups = { dig_immediate = 2; attached_node = 1; |
> |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
local log = sorcery.logger('tap')
minetest.register_node('sorcery:tap',{
description = 'Tree Tap';
drawtype = 'mesh';
mesh = 'sorcery-tap.obj';
inventory_image = 'sorcery_tap_inv.png';
tiles = {
'default_copper_block.png';
'default_steel_block.png';
};
groups = {
dig_immediate = 2;
attached_node = 1;
|