[wpdev-commits] xmlscripts/scripts lightsource.py,1.7,1.8
Brought to you by:
rip,
thiagocorrea
From: Klaus M. \(naddel_tdv\) <nad...@us...> - 2004-08-02 21:04:22
|
Update of /cvsroot/wpdev/xmlscripts/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3000 Modified Files: lightsource.py Log Message: added torches and skull candles Index: lightsource.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/lightsource.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** lightsource.py 9 Jul 2004 21:47:45 -0000 1.7 --- lightsource.py 2 Aug 2004 21:04:08 -0000 1.8 *************** *** 1,2 **** --- 1,3 ---- + #===============================================================# # ) (\_ | WOLFPACK 13.0.0 Scripts # *************** *** 11,15 **** # List of "burning" lightsources ! burning = [ 0x9fd, 0xa02, 0xa07, 0xa0c, 0xa0f, 0xa12, 0xa15, 0xa1a, 0xa22, 0xb1a, 0xb1d, 0xb20, 0xb22, 0xb24, 0xb26, 0x142c, 0x1430, 0x1434 ] ids = { --- 12,16 ---- # List of "burning" lightsources ! burning = [ 0x9fd, 0xa02, 0xa07, 0xa0c, 0xa0f, 0xa12, 0xa15, 0xa1a, 0xa22, 0xb1a, 0xb1d, 0xb20, 0xb22, 0xb24, 0xb26, 0x142c, 0x1430, 0x1434, 0x1854, 0x1858 ] ids = { *************** *** 77,81 **** 0x1434 : 0x1437, 0x1437 : 0x1434 ! } --- 78,95 ---- 0x1434 : 0x1437, 0x1437 : 0x1434 ! ! # Skull Candles ! 0x1853 : 0x1854, ! 0x1854 : 0x1853, ! ! 0x1857 : 0x1858, ! 0x1858 : 0x1857, ! ! # Torches ! 0xa12 : 0xf64, ! 0xf64 : 0xa12, ! ! 0xa12 : 0xf6b, ! 0xf6b : 0xa12 } |