[wpdev-commits] xmlscripts/scripts/wolfpack/magic utilities.py,1.4,1.5
Brought to you by:
rip,
thiagocorrea
|
From: <dr...@us...> - 2004-01-19 18:23:35
|
Update of /cvsroot/wpdev/xmlscripts/scripts/wolfpack/magic In directory sc8-pr-cvs1:/tmp/cvs-serv8845/magic Modified Files: utilities.py Log Message: Added the other reagents to the list. Should make it easier for people who want to customize their spells. Index: utilities.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/magic/utilities.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** utilities.py 8 Oct 2003 01:35:48 -0000 1.4 --- utilities.py 19 Jan 2004 18:23:32 -0000 1.5 *************** *** 8,11 **** --- 8,12 ---- TARGET_IGNORE = 4 + # Common Reagents REAGENT_BLACKPEARL = 0xf7a REAGENT_BLOODMOSS = 0xf7b *************** *** 16,19 **** --- 17,39 ---- REAGENT_SULFURASH = 0xf8c REAGENT_SPIDERSILK = 0xf8d + # Rarea Reagents + REAGENT_BATWING = 0xf78 + REAGENT_BLACKMOOR = 0xf79 + REAGENT_BLOODSPAWN = 0xf7c + REAGENT_DAEMONBLOOD = 0xf7d + REAGENT_BONE = 0xf7e + REAGENT_BRIMSTONE = 0xf7f + REAGENT_DAEMONBONE = 0xf8 + REAGENT_FERTILEDIRT = 0xf81 + REAGENT_DRAGONSBLOOD = 0xf82 + REAGENT_EXECUTIONERSCAP = 0xf83 + REAGENT_EYEOFNEWT = 0xf87 + REAGENT_OBSIDIAN = 0xf89 + REAGENT_PIGIRON = 0xf8a + REAGENT_PUMICE = 0xf8b + REAGENT_NOXCRYSTAL = 0xf8e + REAGENT_GRAVEDUST = 0xf8f + REAGENT_DEADWOOD = 0xf9 + REAGENT_WYRMSHEART = 0xf91 MODE_BOOK = 0 |