1、炉石0CD
update item_template set spellcooldown_1=1 where entry=6948;
2、装备所有抗性X2
UPDATE item_template SET dmg_min1 = dmg_min1*2;
UPDATE item_template SET dmg_max1 = dmg_max1*2;
3、武器攻击力X2
UPDATE item_template SET dmg_min1 = dmg_min1*2;
UPDATE item_template SET dmg_max1 = dmg_max1*2;
4、所有装备无绑定
UPDATE item_template SET bonding = 0;
5、灵魂碎片可以叠加200个
update item_template set stackable = 200 where entry = 6265;
6、宠物属性强化
update pet_levelstats set hp = hp*50;
update pet_levelstats set mana = mana*2;
update pet_levelstats set armor = armor*5;
update pet_levelstats set str = str*10;
update pet_levelstats set agi = agi*10;
update pet_levelstats set sta = sta*10;
update pet_levelstats set inte = inte*10;
update pet_levelstats set spi = spi*10;
7、装备属性提升5倍力敏耐智精
UPDATE item_template SET stat_value1 = stat_value1*5 where stat_type1 = 3;
UPDATE item_template SET stat_value2 = stat_value2*5 where stat_type2 = 3;
UPDATE item_template SET stat_value3 = stat_value3*5 where stat_type3 = 3;
UPDATE item_template SET stat_value4 = stat_value4*5 where stat_type4 = 3;
UPDATE item_template SET stat_value5 = stat_value5*5 where stat_type5 = 3;
UPDATE item_template SET stat_value6 = stat_value6*5 where stat_type6 = 3;
UPDATE item_template SET stat_value7 = stat_value7*5 where stat_type7 = 3;
UPDATE item_template SET stat_value8 = stat_value8*5 where stat_type8 = 3;
UPDATE item_template SET stat_value9 = stat_value9*5 where stat_type9 = 3;
UPDATE item_template SET stat_value10 = stat_value10*5 where stat_type10 = 3;
UPDATE item_template SET stat_value1 = stat_value1*5 where stat_type1 = 4;
UPDATE item_template SET stat_value2 = stat_value2*5 where stat_type2 = 4;
UPDATE item_template SET stat_value3 = stat_value3*5 where stat_type3 = 4;
UPDATE item_template SET stat_value4 = stat_value4*5 where stat_type4 = 4;
UPDATE item_template SET stat_value5 = stat_value5*5 where stat_type5 = 4;
UPDATE item_template SET stat_value6 = stat_value6*5 where stat_type6 = 4;
UPDATE item_template SET stat_value7 = stat_value7*5 where stat_type7 = 4;
UPDATE item_template SET stat_value8 = stat_value8*5 where stat_type8 = 4;
UPDATE item_template SET stat_value9 = stat_value9*5 where stat_type9 = 4;
UPDATE item_template SET stat_value10 = stat_value10*5 where stat_type10 = 4;
UPDATE item_template SET stat_value1 = stat_value1*5 where stat_type1 = 5;
UPDATE item_template SET stat_value2 = stat_value2*5 where stat_type2 = 5;
UPDATE item_template SET stat_value3 = stat_value3*5 where stat_type3 = 5;
UPDATE item_template SET stat_value4 = stat_value4*5 where stat_type4 = 5;
UPDATE item_template SET stat_value5 = stat_value5*5 where stat_type5 = 5;
UPDATE item_template SET stat_value6 = stat_value6*5 where stat_type6 = 5;
UPDATE item_template SET stat_value7 = stat_value7*5 where stat_type7 = 5;
UPDATE item_template SET stat_value8 = stat_value8*5 where stat_type8 = 5;
UPDATE item_template SET stat_value9 = stat_value9*5 where stat_type9 = 5;
UPDATE item_template SET stat_value10 = stat_value10*5 where stat_type10 = 5;
UPDATE item_template SET stat_value1 = stat_value1*5 where stat_type1 = 6;
UPDATE item_template SET stat_value2 = stat_value2*5 where stat_type2 = 6;
UPDATE item_template SET stat_value3 = stat_value3*5 where stat_type3 = 6;
UPDATE item_template SET stat_value4 = stat_value4*5 where stat_type4 = 6;
UPDATE item_template SET stat_value5 = stat_value5*5 where stat_type5 = 6;
UPDATE item_template SET stat_value6 = stat_value6*5 where stat_type6 = 6;
UPDATE item_template SET stat_value7 = stat_value7*5 where stat_type7 = 6;
UPDATE item_template SET stat_value8 = stat_value8*5 where stat_type8 = 6;
UPDATE item_template SET stat_value9 = stat_value9*5 where stat_type9 = 6;
UPDATE item_template SET stat_value10 = stat_value10*5 where stat_type10 = 6;
UPDATE item_template SET stat_value1 = stat_value1*5 where stat_type1 = 7;
UPDATE item_template SET stat_value2 = stat_value2*5 where stat_type2 = 7;
UPDATE item_template SET stat_value3 = stat_value3*5 where stat_type3 = 7;
UPDATE item_template SET stat_value4 = stat_value4*5 where stat_type4 = 7;
UPDATE item_template SET stat_value5 = stat_value5*5 where stat_type5 = 7;
UPDATE item_template SET stat_value6 = stat_value6*5 where stat_type6 = 7;
UPDATE item_template SET stat_value7 = stat_value7*5 where stat_type7 = 7;
UPDATE item_template SET stat_value8 = stat_value8*5 where stat_type8 = 7;
UPDATE item_template SET stat_value9 = stat_value9*5 where stat_type9 = 7;
UPDATE item_template SET stat_value10 = stat_value10*5 where stat_type10 = 7;
力敏耐智精的代码就是3.4.5.6.7,*X就是多少倍,自己改