Skip to content
Snippets Groups Projects
Commit 5eb1cc39 authored by dg's avatar dg
Browse files

Bloodcaller, the reward from the ring of blood, is not an arcane artifact anymore

git-svn-id: http://svn.net-core.org/repos/t-engine4@3342 51575b47-30f0-44d4-a5cc-537603b46e54
parent b0ff350f
No related branches found
No related tags found
No related merge requests found
......@@ -546,6 +546,7 @@ function _M:getDesc(name_param)
if self.power_source.nature then desc:add("Infused by ", {"color", "OLIVE_DRAB"}, "nature", {"color", "LAST"}, true) end
if self.power_source.antimagic then desc:add("Infused by ", {"color", "ORCHID"}, "arcane disrupting forces", {"color", "LAST"}, true) end
if self.power_source.technique then desc:add("Crafted by ", {"color", "LIGHT_UMBER"}, "a master", {"color", "LAST"}, true) end
if self.power_source.psionic then desc:add("Infused by ", {"color", "YELLOW"}, "psionic forces", {"color", "LAST"}, true) end
if self.power_source.unknown then desc:add("Powered by ", {"color", "CRIMSON"}, "unknown forces", {"color", "LAST"}, true) end
end
......
......@@ -20,7 +20,7 @@
load("/data/general/objects/objects-maj-eyal.lua")
newEntity{ base = "BASE_RING",
power_source = {arcane=true},
power_source = {psionic=true},
define_as = "RING_OF_BLOOD", rarity=false,
name = "Bloodcaller", unique=true,
desc = [[You won the Ring of Blood trial, this is your reward.]],
......
......@@ -26,7 +26,7 @@ mkdir t-engine4-linux32-"$ver"
# src
echo "******************** Src"
cd t-engine4-src-"$ver"
cp -a ../../bootstrap/ ../../game/ ../../C* ../../premake4.lua ../../src/ .
cp -a ../../bootstrap/ ../../game/ ../../C* ../../premake4.lua ../../src/ ../../build/ ../../mac/ .
rm -rf game/modules/angband
rm -rf game/modules/rogue
rm -rf game/modules/gruesome
......@@ -48,7 +48,6 @@ tar cvjf t-engine4-src-"$ver".tar.bz2 t-engine4-src-"$ver"
echo "******************** Windows"
cd t-engine4-windows-"$ver"
cp -a ../../bootstrap/ ../../game/ ../../C* ../../dlls/* .
mv te4core-* game/engines/cores/
find . -name '*~' -or -name '.svn' | xargs rm -rf
rm -rf game/modules/angband
rm -rf game/modules/rogue
......@@ -60,7 +59,6 @@ zip -r -9 t-engine4-windows-"$ver".zip t-engine4-windows-"$ver"
echo "******************** linux32"
cd t-engine4-linux32-"$ver"
cp -a ../../bootstrap/ ../../game/ ../../C* ../../linux-bin/* .
mv te4core-* game/engines/cores/
find . -name '*~' -or -name '.svn' | xargs rm -rf
rm -rf game/modules/angband
rm -rf game/modules/rogue
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment