here ya go:
75% less Health
Code:
Update creature_proto SET minhealth=(minhealth * 0.25) where entry in (select entry from creature_names where rank ='1');
Update creature_proto SET maxhealth=(maxhealth * 0.25) where entry in (select entry from creature_names where rank ='1');
that is for elite only...
for rare elite:
Code:
Update creature_proto SET minhealth=(minhealth * 0.25) where entry in (select entry from creature_names where rank ='2');
Update creature_proto SET maxhealth=(maxhealth * 0.25) where entry in (select entry from creature_names where rank ='2');
for world bosses:
Code:
Update creature_proto SET minhealth=(minhealth * 0.25) where entry in (select entry from creature_names where rank ='3');
Update creature_proto SET maxhealth=(maxhealth * 0.25) where entry in (select entry from creature_names where rank ='3');
for rare mobs:
Code:
Update creature_proto SET minhealth=(minhealth * 0.25) where entry in (select entry from creature_names where rank ='4');
Update creature_proto SET maxhealth=(maxhealth * 0.25) where entry in (select entry from creature_names where rank ='4');
75% less Damage (melee)
For elites only:
Code:
Update creature_proto SET mindamage=(mindamage * 0.25) where entry in (select entry from creature_names where rank ='1');
Update creature_proto SET maxdamage=(maxdamage * 0.25) where entry in (select entry from creature_names where rank ='1');
For rare elites:
Code:
Update creature_proto SET mindamage=(mindamage * 0.25) where entry in (select entry from creature_names where rank ='2');
Update creature_proto SET maxdamage=(maxdamage * 0.25) where entry in (select entry from creature_names where rank ='2');
For World bosses:
Code:
Update creature_proto SET mindamage=(mindamage * 0.25) where entry in (select entry from creature_names where rank ='3');
Update creature_proto SET maxdamage=(maxdamage * 0.25) where entry in (select entry from creature_names where rank ='3');
For rare mobs:
Code:
Update creature_proto SET mindamage=(mindamage * 0.25) where entry in (select entry from creature_names where rank ='4');
Update creature_proto SET maxdamage=(maxdamage * 0.25) where entry in (select entry from creature_names where rank ='4');
spells
Spells cant be done in DB... you can only delete spells from the boss in the creature_proto table...
grtz