Differences From Artifact [da59e16e73]:
- File harvester.lua — part of check-in [147592b8e9] at 2020-10-26 03:58:08 on branch trunk — add over-time spellcasting abstraction to enable metamagic and in particular disjunction, add more animations and sound effects, add excavation spell, possibly some others, forget when the last commit was, edit a bunch of magitech to make it subject to the disjunction mechanism (throw up a disjunction aura and waltz right through those force fields bby, wheee), also illumination spells, tweak runeforge and rune frequence to better the balance and also limit player frustration, move some math functions into their own library category, various tweaks and bugfixes, probably other shit i don't remember (user: lexi, size: 4480) [annotate] [blame] [check-ins using]
To Artifact [f0412b02ed]:
- File harvester.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: 4470) [annotate] [blame] [check-ins using]
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
minetest.register_node('sorcery:harvester', {
description = 'Harvester';
drawtype = 'mesh';
paramtype = 'light';
paramtype2 = 'facedir';
mesh = 'sorcery-harvester.obj';
after_dig_node = sorcery.lib.node.purge_container;
groups = { cracky = 2; oddly_breakable_by_hand = 1; sorcery_magitech = 1; };
sunlight_propagates = true;
selection_box = hitbox;
collision_box = hitbox;
tiles = {
amethyst:render();
'default_copper_block.png';
'default_stone.png';
|
| |
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
minetest.register_node('sorcery:harvester', {
description = 'Harvester';
drawtype = 'mesh';
paramtype = 'light';
paramtype2 = 'facedir';
mesh = 'sorcery-harvester.obj';
after_dig_node = sorcery.lib.node.purge_container;
groups = { cracky = 2; dig_immediate = 2; sorcery_magitech = 1; };
sunlight_propagates = true;
selection_box = hitbox;
collision_box = hitbox;
tiles = {
amethyst:render();
'default_copper_block.png';
'default_stone.png';
|