Differences From
Artifact [a37b19ab11]:
- File
metal.lua
— part of check-in
[96c5289a2a]
at
2020-10-21 03:35:35
on branch trunk
— add rune forges, runes, amulet frames, write sacrifice spell, touch up amulet graphics, enable enchantment of amulets (though spells cannot yet be cast), defuckulate syncresis core icon, unfuckitize sneaky leycalc bug that's probably been the cause of some long-standing wackiness, add item classes, add some more textures, disbungle various other asstastrophes, remove sneaky old debug code, improve library code, add utility for uploading merge requests
(user:
lexi,
size: 6688)
[annotate]
[blame]
[check-ins using]
140 140 power = metal.power;
141 141 speed = metal.speed;
142 142 artificial = metal.artificial;
143 143 cooktime = metal.cooktime;
144 144 hardness = (metal.hardness/8) * 3; -- scaled wrt diamond
145 145 level = math.ceil(((metal.hardness/8) * 3)) + 1;
146 146 ingot_image = (metal.image and metal.image.ingot) or nil;
147 + block_image = (metal.image and metal.image.block) or nil;
147 148 ore_image = 'default_stone.png^sorcery_' .. name .. '_ore.png';
148 149 lump_image = (metal.image and metal.image.lump) or nil;
149 150 armor_weight = metal.armor_weight;
150 151 armor_protection = metal.armor_protection;
151 152 }
152 153 end
153 154 local ti = (metal.image and metal.image.tool)