|
From: Crossfire C. r. messages.
<cro...@li...> - 2020-08-07 04:18:20
|
Revision: 21255
http://sourceforge.net/p/crossfire/code/21255
Author: silvernexus
Date: 2020-08-07 04:18:18 +0000 (Fri, 07 Aug 2020)
Log Message:
-----------
Add artifact (weapon) of Souls. Depends on r21251 through r21254 to function.
Modified Paths:
--------------
arch/trunk/ChangeLog
arch/trunk/artifacts
Modified: arch/trunk/ChangeLog
===================================================================
--- arch/trunk/ChangeLog 2020-08-07 04:13:52 UTC (rev 21254)
+++ arch/trunk/ChangeLog 2020-08-07 04:18:18 UTC (rev 21255)
@@ -1,3 +1,7 @@
+Add a new artifact: (weapon) of Souls. Requires server and maps (python scripts) updates to function.
+artifacts
+Daniel Hawkins 2020-08-07
+
Remove duplicate attributes.
skills/Skill_Tools/mining_pick.arc
Andreas Kirschbaum 2020-06-18
Modified: arch/trunk/artifacts
===================================================================
--- arch/trunk/artifacts 2020-08-07 04:13:52 UTC (rev 21254)
+++ arch/trunk/artifacts 2020-08-07 04:18:18 UTC (rev 21255)
@@ -689,6 +689,29 @@
slaying /python/items/weapon_occidental_mages.py
end
end
+# It looks like a normal weapon, but then is anything but if you use it.
+Allowed all
+chance 1
+difficulty 10
+Object Souls
+type 15
+value 1000
+msg
+ This weapon pulses with a malevolent glow. It whispers into your mind of its hunger, and promises infinite power if you satiate it.
+endmsg
+arch event_apply
+title Python
+slaying /python/items/curse_on_apply.py
+end
+arch event_drop
+title Python
+slaying /python/items/lose_buffs_on_drop.py
+end
+arch event_throw
+title Python
+slaying /python/items/lose_buffs_on_drop.py
+end
+end
#
#
# Swords (subtype of weapons)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|