[wpdev-commits] xmlscripts/scripts/system slayer.py,1.1,1.2
Brought to you by:
rip,
thiagocorrea
From: Sebastian H. <dar...@us...> - 2004-10-06 20:07:24
|
Update of /cvsroot/wpdev/xmlscripts/scripts/system In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29203/system Modified Files: slayer.py Log Message: slayer weapons Index: slayer.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/system/slayer.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** slayer.py 6 Oct 2004 20:06:01 -0000 1.1 --- slayer.py 6 Oct 2004 20:07:07 -0000 1.2 *************** *** 31,35 **** self.super = None # Super slayer for this group self.entries = [] # Normal Slayer Entries for this group - self.foundon = [] # BaseIds this is found on def addsuper(self, sup): --- 31,34 ---- *************** *** 51,55 **** # HUMANOID SLAYER GROUP humanoid.opposition = undead - humanoid.foundon = ['bone_knight', 'lich', 'lich_lord'] humanoid.addsuper( SlayerEntry('repond', 1017388, ['orcs', 'ogres', 'trolls', 'giants'] ) ) humanoid.add( SlayerEntry('ogretrashing', 1017387, ['ogres']) ) --- 50,53 ---- *************** *** 63,67 **** # ELEMENTAL SLAYER GROUP elemental.opposition = abyss - elemental.foundon = ['balron', 'daemon'] elemental.addsuper( SlayerEntry('elementalban', 1017409, ['bloodelementals', 'earthelementals', 'poisonelementals', 'fireelementals', 'snowelementals', 'airelementals', 'waterelementals', 'oreelementals']) ) elemental.add( SlayerEntry( 'blooddrinking', 1017407, ['bloodelementals'] ) ) --- 61,64 ---- *************** *** 75,79 **** # ABYSS SLAYER GROUP abyss.opposition = elemental - abyss.foundon = ['blood_elemental'] abyss.addsuper( SlayerEntry('exorcism', 1017397, ['daemons', 'gargoyles', 'balron']) ) abyss.add( SlayerEntry('daemondismissal', 1017394, ['daemons']) ) --- 72,75 ---- *************** *** 83,87 **** # ARACHNID SLAYER GROUP arachnid.opposition = reptilian - arachnid.foundon = ['ancient_wyrm', 'dragon', 'dragon_red', 'dragon_gray', 'ophidian_matriarch', 'shadow_wyrm'] arachnid.addsuper( SlayerEntry('arachniddoom', 1017401, ['spiders', 'scorpions', 'tarathans', 'mephitis']) ) arachnid.add( SlayerEntry('scorpionsbane', 1017400, ['scorpions']) ) --- 79,82 ---- *************** *** 91,95 **** # REPTILIAN SLAYER GROUP reptilian.opposition = arachnid - reptilian.foundon = [ 'terathan_avenger', 'terathan_matriarch' ] reptilian.addsuper( SlayerEntry( 'reptiliandeath', 1017393, ['dragons', 'lizards', 'ophidians', 'snakes'] ) ) reptilian.add( SlayerEntry( 'dragonslaying', 1017389, ['dragons'] ) ) --- 86,89 ---- |