Commit 5eb1cc39c40fd79312f0bb1cfc82741881b5051d
1 parent
b0ff350f
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
Showing
3 changed files
with
3 additions
and
4 deletions
... | ... | @@ -546,6 +546,7 @@ function _M:getDesc(name_param) |
546 | 546 | if self.power_source.nature then desc:add("Infused by ", {"color", "OLIVE_DRAB"}, "nature", {"color", "LAST"}, true) end |
547 | 547 | if self.power_source.antimagic then desc:add("Infused by ", {"color", "ORCHID"}, "arcane disrupting forces", {"color", "LAST"}, true) end |
548 | 548 | if self.power_source.technique then desc:add("Crafted by ", {"color", "LIGHT_UMBER"}, "a master", {"color", "LAST"}, true) end |
549 | + if self.power_source.psionic then desc:add("Infused by ", {"color", "YELLOW"}, "psionic forces", {"color", "LAST"}, true) end | |
549 | 550 | if self.power_source.unknown then desc:add("Powered by ", {"color", "CRIMSON"}, "unknown forces", {"color", "LAST"}, true) end |
550 | 551 | end |
551 | 552 | ... | ... |
... | ... | @@ -20,7 +20,7 @@ |
20 | 20 | load("/data/general/objects/objects-maj-eyal.lua") |
21 | 21 | |
22 | 22 | newEntity{ base = "BASE_RING", |
23 | - power_source = {arcane=true}, | |
23 | + power_source = {psionic=true}, | |
24 | 24 | define_as = "RING_OF_BLOOD", rarity=false, |
25 | 25 | name = "Bloodcaller", unique=true, |
26 | 26 | desc = [[You won the Ring of Blood trial, this is your reward.]], | ... | ... |
... | ... | @@ -26,7 +26,7 @@ mkdir t-engine4-linux32-"$ver" |
26 | 26 | # src |
27 | 27 | echo "******************** Src" |
28 | 28 | cd t-engine4-src-"$ver" |
29 | -cp -a ../../bootstrap/ ../../game/ ../../C* ../../premake4.lua ../../src/ . | |
29 | +cp -a ../../bootstrap/ ../../game/ ../../C* ../../premake4.lua ../../src/ ../../build/ ../../mac/ . | |
30 | 30 | rm -rf game/modules/angband |
31 | 31 | rm -rf game/modules/rogue |
32 | 32 | rm -rf game/modules/gruesome |
... | ... | @@ -48,7 +48,6 @@ tar cvjf t-engine4-src-"$ver".tar.bz2 t-engine4-src-"$ver" |
48 | 48 | echo "******************** Windows" |
49 | 49 | cd t-engine4-windows-"$ver" |
50 | 50 | cp -a ../../bootstrap/ ../../game/ ../../C* ../../dlls/* . |
51 | -mv te4core-* game/engines/cores/ | |
52 | 51 | find . -name '*~' -or -name '.svn' | xargs rm -rf |
53 | 52 | rm -rf game/modules/angband |
54 | 53 | rm -rf game/modules/rogue |
... | ... | @@ -60,7 +59,6 @@ zip -r -9 t-engine4-windows-"$ver".zip t-engine4-windows-"$ver" |
60 | 59 | echo "******************** linux32" |
61 | 60 | cd t-engine4-linux32-"$ver" |
62 | 61 | cp -a ../../bootstrap/ ../../game/ ../../C* ../../linux-bin/* . |
63 | -mv te4core-* game/engines/cores/ | |
64 | 62 | find . -name '*~' -or -name '.svn' | xargs rm -rf |
65 | 63 | rm -rf game/modules/angband |
66 | 64 | rm -rf game/modules/rogue | ... | ... |
-
Please register or login to post a comment