Developer Store
Support
Member Forums

Screenshots
FAQ
Documentation
License
Known Issues
Downloads

MMOWorkshop.com Store Opened!
Torque MMO Kit - Open Sourced!
Torque MMO Kit - 1.5.2 Port Alpha Test
Torque MMO Kit - OSX Status

GarageGames.com irc.prairiegames.com
#mmoworkshop

PyTorque
TGB Web Browser


jburch

J.C. Smith - The Repopulation - New Concept Art
xapken - Renaming RealmLords
Wolf Dreamer - Vista users how to do it
mpratt - MMO Game
foodstamp - Another Day Another Step Accomplished
hallsofvalhalla - After a long epiphany
Leathel - FoHO pre-Alpha 2.42
OldRod - More Musings on the MMO Industry
... MORE BLOGS!

Adding A New Race
Dynamic Zones
move animation
Legacy Terraing Issue
single player zone in multiplaye...
Getting people in the door, and ...
Indoor environments
Quest Remnants of Chaos
Camera and attack changes
Making a singleplayer map access...
Show
Ignore:
Timestamp:
01/08/08 09:53:03 (1 year ago)
Author:
jritter
Message:

merging for Minions of Mirth 1.26.2 patch

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/games/minionsofmirth/v1/genesis/crafting/monsterarmor.py

    r196 r828  
    11from genesis.dbdict import * 
    22from mud.world.defines import * 
    3 #--- Defines   
    4 durSecond = 6 
    5 durMinute = durSecond * 60 
    6 durHour = durMinute * 60 
    73 
    84#+++ Contents - Updated 7/2/06 
     
    2016#               Added new Tillium items & recipes 
    2117#               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. 
    2223 
    2324 
     
    10481049item.material = "FEET/FEET18" 
    10491050 
    1050 item = item.clone(name="Monstrous Ivory Boots",armor=450,repairMax=225,worthPlatinum=4,level=65,bitmap = "EQUIPMENT/FEET/4",material = "FEET/FEET18") 
     1051item = item.clone(name="Monstrous Ivory Boots",armor=450,repairMax=225,worthPlatinum=4,bitmap = "EQUIPMENT/FEET/4",material = "FEET/FEET18") 
    10511052item.clearRealms() 
    10521053item.addRealm(RPG_REALM_MONSTER,65) 
     
    12531254item.addRealm(RPG_REALM_MONSTER,80) 
    12541255 
    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") 
     1256item = 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") 
    12561257item.clearRealms() 
    12571258item.addRealm(RPG_REALM_MONSTER,100)