Update of /cvsroot/wpdev/xmlscripts/scripts/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25063/wolfpack
Modified Files:
consts.py weaponinfo.py
Log Message:
I hope I added these skill numbers in the right spots...
Oh, and now we have some template stuff for weaponinfo
Index: weaponinfo.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/weaponinfo.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** weaponinfo.py 8 Sep 2004 04:12:15 -0000 1.9
--- weaponinfo.py 7 Oct 2004 22:56:12 -0000 1.10
***************
*** 422,423 ****
--- 422,512 ----
}
}
+
+ SAMURAIWEAPONINFO = {
+ # Bokuto
+ '27a8': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Daisho
+ '27a9': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Fukiya
+ '27aa': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Kama
+ '27ad': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Lajatang
+ '27a7': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # No-Dachi
+ '27a2': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Nunchaku
+ '27ae': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Sai
+ '27af': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Shuriken
+ '27ac': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Tekagi
+ '27ab': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Tessen
+ '27a3': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Tetsubo
+ '27a6': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Wakizashi
+ '27a4': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ },
+ # Yumi
+ '27a5': {
+ SWING: [0x9],
+ HITSOUND: [0x233, 0x232],
+ MISSSOUND: [ 0x23a, 0x239 ]
+ }
+ }
+
+ WEAPONINFO.update( SAMURAIWEAPONINFO )
Index: consts.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/consts.py,v
retrieving revision 1.85
retrieving revision 1.86
diff -C2 -d -r1.85 -r1.86
*** consts.py 6 Oct 2004 20:06:00 -0000 1.85
--- consts.py 7 Oct 2004 22:56:12 -0000 1.86
***************
*** 197,201 ****
FOCUS = 50
CHIVALRY = 51
! ALLSKILLS = 52 # skills + 1
"""
\end
--- 197,203 ----
FOCUS = 50
CHIVALRY = 51
! NINJITSU = 52
! BUSHIDO = 53
! ALLSKILLS = 54 # skills + 1
"""
\end
***************
*** 210,214 ****
'taming', 'tasteid', 'tinkering', 'tracking', 'veterinary', 'swordsmanship',
'macefighting', 'fencing', 'wrestling', 'lumberjacking', 'mining', 'meditation',
! 'stealth', 'removetraps', 'necromancy', 'focus', 'chivalry' ]
skillnamesids = {
--- 212,216 ----
'taming', 'tasteid', 'tinkering', 'tracking', 'veterinary', 'swordsmanship',
'macefighting', 'fencing', 'wrestling', 'lumberjacking', 'mining', 'meditation',
! 'stealth', 'removetraps', 'necromancy', 'focus', 'chivalry', 'ninjitsu', 'bushido' ]
skillnamesids = {
***************
*** 264,268 ****
'necromancy' : NECROMANCY,
'focus' : FOCUS,
! 'chivalry' : CHIVALRY
}
--- 266,272 ----
'necromancy' : NECROMANCY,
'focus' : FOCUS,
! 'chivalry' : CHIVALRY,
! 'ninjitsu' : NINJITSU,
! 'bushido' : BUSHIDO
}
|