Differences From Artifact [994388d832]:
- File infuser.lua — part of check-in [f165d9e39f] at 2020-09-24 23:07:33 on branch trunk — add blood god, add gravitator, add hand-drawn ore images, add mana hud display for enchanted items, various tweaks and enhancements (user: lexi, size: 7605) [annotate] [blame] [check-ins using]
To Artifact [0d2fb4d9eb]:
- File infuser.lua — part of check-in [72eebac4bc] at 2020-09-26 18:49:51 on branch trunk — add writing stand for editing codexes; add scissors, ink, erasure fluid, pens; touch up codex UI; add many recipe notes; add craft divination type for crafttools; defuckulate fucktarded crafttool impl; enhance table library with missing features like lua's table.unpack; many bug fixes and enhancements; blood for the blood god (user: lexi, size: 7731) [annotate] [blame] [check-ins using]
208 209 210 211 212 213 214 215 216 217 218 219 220 221 |
"default_bronze_block.png",
"default_tin_block.png",
};
paramtype2 = 'facedir';
groups = {
cracky = 2, oddly_breakable_by_hand = 1, heavy = 1;
sorcery_alchemy = 1, sorcery_magitech = 1;
};
selection_box = {
type = 'fixed';
fixed = {
-0.37, -0.5, -0.37,
0.37, 0.5, 0.37
};
|
> > > > > |
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
"default_bronze_block.png",
"default_tin_block.png",
};
paramtype2 = 'facedir';
groups = {
cracky = 2, oddly_breakable_by_hand = 1, heavy = 1;
sorcery_alchemy = 1, sorcery_magitech = 1;
};
_sorcery = {
recipe = {
note = 'Infuse special ingredients into liquids to create and alter powerful potions';
};
};
selection_box = {
type = 'fixed';
fixed = {
-0.37, -0.5, -0.37,
0.37, 0.5, 0.37
};
|