- Timestamp:
- 01/08/08 09:53:03 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/games/minionsofmirth/v1/genesis/crafting/monsterarmor.py
r196 r828 1 1 from genesis.dbdict import * 2 2 from mud.world.defines import * 3 #--- Defines4 durSecond = 65 durMinute = durSecond * 606 durHour = durMinute * 607 3 8 4 #+++ Contents - Updated 7/2/06 … … 20 16 # Added new Tillium items & recipes 21 17 # Reduced max repair on Coral armor to 50 (from 350) 18 19 # - Updated 12/29/07 - Llarlen 20 # Fixed item level assignments, item.level was lower than realm level 21 # requirement due to cloning and would give wrong information for 22 # various functions and in encyclopedia. 22 23 23 24 … … 1048 1049 item.material = "FEET/FEET18" 1049 1050 1050 item = item.clone(name="Monstrous Ivory Boots",armor=450,repairMax=225,worthPlatinum=4, level=65,bitmap = "EQUIPMENT/FEET/4",material = "FEET/FEET18")1051 item = item.clone(name="Monstrous Ivory Boots",armor=450,repairMax=225,worthPlatinum=4,bitmap = "EQUIPMENT/FEET/4",material = "FEET/FEET18") 1051 1052 item.clearRealms() 1052 1053 item.addRealm(RPG_REALM_MONSTER,65) … … 1253 1254 item.addRealm(RPG_REALM_MONSTER,80) 1254 1255 1255 item = item.clone(name="Monstrous Tillium Cap",armor=750,repairMax=300,worthPlatinum=10, level=100,bitmap = "EQUIPMENT/HEAD/9",material = "head/helmet_iron_blue",model = "head/helmet.dts")1256 item = item.clone(name="Monstrous Tillium Cap",armor=750,repairMax=300,worthPlatinum=10,bitmap = "EQUIPMENT/HEAD/9",material = "head/helmet_iron_blue",model = "head/helmet.dts") 1256 1257 item.clearRealms() 1257 1258 item.addRealm(RPG_REALM_MONSTER,100)

