Overview
| Comment: | fix recipe |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
be68d52c901c489b054ea39a48acdd6d |
| User & Date: | lexi on 2021-10-18 12:45:13 |
| Other Links: | manifest | tags |
Context
|
2021-10-27
| ||
| 13:42 | add distiller, remove old extract recipes check-in: 58edda50fc user: lexi tags: trunk | |
|
2021-10-18
| ||
| 12:45 | fix recipe check-in: be68d52c90 user: lexi tags: trunk | |
| 12:03 | add missing images check-in: 59604446d7 user: lexi tags: trunk | |
Changes
Modified infuser.lua from [fedc837bad] to [87c83ae8d7].
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 |
minetest.register_craft {
output = 'sorcery:infuser_mod_amplifier';
recipe = {
-- this recipe is crap + way too cheap, come up with
-- some fancy new ingredients and use them instead FIXME
{'basic_materials:silver_wire','stairs:slab_copperblock',''};
{'default:wood','sorcery:core_syncretic','default:wood'};
{'sorcery:gem_sapphire','default:copperblock','sorcery:gem_sapphire'};
};
}
-- other mods:
-- * amplifier
-- * elixir enhancer
-- * randomizer
-- * device that enables some kind of higher-tier potionmaking
-- * device that allows attaching 1 or 2 stand mods without terminating the stack
-- * radia collector - captures spare radia, occasionally can produce an extra potion, sometimes random
|
| |
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 |
minetest.register_craft {
output = 'sorcery:infuser_mod_amplifier';
recipe = {
-- this recipe is crap + way too cheap, come up with
-- some fancy new ingredients and use them instead FIXME
{'basic_materials:silver_wire','stairs:slab_copperblock',''};
{'group:wood','sorcery:core_syncretic','group:wood'};
{'sorcery:gem_sapphire','default:copperblock','sorcery:gem_sapphire'};
};
}
-- other mods:
-- * amplifier
-- * elixir enhancer
-- * randomizer
-- * device that enables some kind of higher-tier potionmaking
-- * device that allows attaching 1 or 2 stand mods without terminating the stack
-- * radia collector - captures spare radia, occasionally can produce an extra potion, sometimes random
|