SQL语句教程
INSERT INTO world
.creature_area
(guid
, zone
, area
) VALUES ('6', '1', '1');
这个语句就是一个将物品导入的语句,注意这句前面的INSERT INTO就是‘导入’的意思
UPDATE world
.creature_area
SET guid
='6', zone
='1', area
='1' WHERE (guid
='6');
这个语句就是一个将物品导入的语句,注意这句前面的UPDATE就是‘修改’的意思
这两种语句是我们最最常用的语句,那么我们来一个一个的解释
导入语句:
INSERT INTO world
.creature_area
(guid
, zone
, area
) VALUES ('6', '1', '1');
INSERT INTO world
.creature_area
代表,你要导入到哪里,这里就是指的WORLD库里的creature_area表
(guid
, zone
, area
)代表这个表里面的每一列,通常会有很多咧,会依次用逗号隔开
VALUES就是指数值的意思,前面要导入的每一列都会填入一个数值
('6', '1', '1');就是前面每一列填入的数值,对应着(guid
, zone
, area
)的排列顺序。
修改语句:
UPDATE world
.creature_area
SET guid
='6', zone
='1', area
='1' WHERE (guid
='6');
前面已经讲了,UPDATE world
.creature_area
就是修改哪个库的哪个表
SET 字面翻译,就是设置为,和导入语句不同的这是,一定要记住
guid
='6', zone
='1', area
='1' 非常好理解了吧,就是某列设置为某值
WHERE (guid
='6');这个非常重要,这个是判定你要修改那一行,这句的意思就是当guid`='6'的时候,进行前面的修改。
那么我们来举一反三
我们要修改item_template表的socketColor_1列为1,应该这么写
UPDATE item_template set socketColor_1 = 1;
细心的朋友发现了,这样会把整个表的socketColor_1列都修改为1,但是我只想修改武器的socketColor_1列怎么办?这就要加入判定了,就是前面教的WHERE x='y'
这样,我们就得出一下这句
UPDATE item_template set socketColor_1 = 1 where class='2';
有些同学疑问了,为什么我这里UPDATE item_template之间没有选择什么库,那是应为我直接在WORLD库右键点命令列界面,在这里我就不用判定导入什么库了,就默认为你选择的库。
好的,这是最基本的语句,下面我们再深入一些。
二:多重判定.与值的计算
多重判定:
有的同学问了,我们要修改的物品,只有一个判定是不够的,比如我们要修改装备等级大于100小于200的装备怎么办?这里存在了2个判定,那么这第二部分的重点就来了。
例句:UPDATE item_template SET socketColor_1 = 1 where itemlevel>'100' and itemlevel<'200';
同学们看懂了吗?我们只需要在第一个判定后面加入一个and,这样我们就可以有无限多的判定了,再练习一个,我们不但要等级大于100小于200的装备,还要只能是武器。
UPDATE item_template SET socketColor_1 = 1 where itemlevel>'100' and itemlevel<'200'and class='2';
值的计算:
可爱的同学们又提出问题了,我们这手动输入一个一个输入值好慢,我们要让他自动生成值怎么办?
OK,这里来个例子,我们要修改装备等级大于300小于500的装备的stat_value1列为原始的2倍
UPDATE item_template SET stat_value1 = stat_value1*2 where itemlevel>'300' and itemlevel<'500';
很简单吧?
有的同学又提出问题了,我们要更自动化!全部放大倍数太简单了!我们要更有变化!
好的~再看个例子,我们要修改装备等级大于300小于500的装备的stat_value1列来按照装备提高等于装备等级的数值。
UPDATE item_template SET stat_value1 = stat_value1+itemlevel where itemlevel>'300' and itemlevel<'500';
给装备加前缀名字
很多同学喜欢给自己的装备加个个性的前缀名字,那么这个公式大家可以借鉴
UPDATE item_template set name=concat('超级牛逼的 ',name) where itemlevel>'200';
concat('超级牛逼的 ',name)就是在原始的名字前面加上引号里的数值,同样适用于数字,至于后面的判定,前面讲过了。
随机写入数值
那么,同学们觉得肯定还不够,要更复杂的,好的,我们来更复杂一点
我们只想让装备等级等于300的装备的stat_value1完全随机在400-2500之间怎么办?
update item_template set stat_value1 = round(rand() * 2100) + 400 where itemlevel='300';
这里新出现新的公式: round(rand() * 2100) + 400 ,至于原理,乱七八糟很复杂,恩。。。(就算我死记硬背的,我也不会说出来!)但是有个简单的方式来计算
round(rand() * X) +Y X=你需要的数值上限减去下限 Y=数值下限
好的,这些大家一定要学会举一反三,你到这里学会了的话已经可以做做看,你会发现比你用修改器快很多多多啊。。。。
三:从别的表导入现在的表和一个批量增加掉率的公式
合并表:
通过前面学习,大家应该学会了,很多同学想到了把一个表复制好几个,然后执行不同的批量命令来生成好几个等级的装备,那么我们怎么把他们合并在一起呢
比如我们要把item_template_2合并到item_template
那么就这样写:
insert into item_template select * from item_template_2;
批量增加掉率:
如果我们制作了很多装备在item_template_2,然后怎么让怪物掉落这些装备呢?那么这样写
insert into creature_loot_template
select distinct creature_template.entry, item_template_2.entry,
0.001, 0, 1, 1, 0, 0, 0
from item_template_2, creature_template, creature_loot_template
where
creature_template.entry = creature_loot_template.entry
and creature_template.entry = XXXXX;
粗看很复杂,那么我们来解释一下
creature_template.entry = XXXXX就是制定那个怪掉落,XXXX是怪物的entry列数值
0.001, 0, 1, 1, 0, 0, 0对应的是你的creature_loot_template表里从第三列开始的数值,你可以自行设置。(通常是这样的结构,Chance打头的就是掉率,注意,groupid相同的掉率总合不能超100%)
那么我们再来实践下,比如我们复制出来的表item_template_14里面有很多很多装备,我只想要怪物ID10000掉落装备等级大于200小于300的装备,每件掉率是0.55
insert into creature_loot_template
select distinct creature_template.entry, item_template_14.entry,
0.55, 0, 1, 1, 0, 0, 0
from item_template_14, creature_template, creature_loot_template
where
creature_template.entry = creature_loot_template.entry
and creature_template.entry = 10000 and item_template_14.itemlevel>'200' and item_template_14.itemlevel<'300';
四:自动批量写入
我们好懒,对吧?我们要自动写入一堆就可以开开心心的玩游戏了对吧?那么,这又带来一个死记硬背的公式!
DELIMITER $$
DROP PROCEDURE IF EXISTS WhileLoopProc$$
CREATE PROCEDURE WhileLoopProc()
BEGIN
DECLARE x INT;
SET x = 1;
WHILE x <= 1034 DO
INSERT INTO item_enchantment_template
(entry
, ench
, chance
, type
) VALUES ('10002', (22001+x), 0.016, 1);
SET x = x + 1;
END WHILE;
END$$
DELIMITER ;
call WhileLoopProc();
乱不乱?别问我,我也不懂,但是该改什么我告诉你!
SET x = 1代表一个基数,通常我喜欢用0
WHILE x <= 1034 DO 代表你要导入多少条,公式是每行增加的数值乘以你要导入的条数然后减去每行增加的数值.
(22001+x) 代表值的最小值,比如你要导入值最小为80000,那么就写入(80000+x)
SET x = x + 1 代表你每个值增加多少,这里是每一行增加1,如果你要增加100,那么就写入SET x = x + 100
那么我们来个例子,比如我们要导入刚才那个表的ench列从3333开始每值加321!一共911条怎么写?
DELIMITER $$
DROP PROCEDURE IF EXISTS WhileLoopProc$$
CREATE PROCEDURE WhileLoopProc()
BEGIN
DECLARE x INT;
SET x = 0;
WHILE x <= 292110 DO
INSERT INTO item_enchantment_template
(entry
, ench
, chance
, type
) VALUES ('10005', (3333+x), 0.016, 1);
SET x = x + 321;
END WHILE;
END$$
DELIMITER ;
call WhileLoopProc();
/物品需求等级降低10%/
update item_template set RequiredLevel = RequiredLevel*0.9;
/技能学习等级需求降低20%/
update npc_trainer set ReqLevel = ReqLevel*0.8;
/去除物品使用种族、职业限制/
update item_template set allowableclass = -1;
update item_template set AllowableRace=-1;
/任务获得5倍于经验的竞技场点数/
update quest_template set RewardArenaPoints=RewardXPID*5;
/所有物品无限量持有和叠加/
UPDATE item_template SET Maxcount = 0;
update item_template set stackable = 9999 where stackable>1;
/任务物品100%掉落/
update creature_loot_template set ChanceOrQuestChance = -100 where ChanceOrQuestChance<0;
/物品售价提高10%/
update item_template set sellprice=sellprice*1.1;
/所有物品不绑定/
update item_template set bonding = 0;
/怪物移动速度减低10%/
update creature_template set speed_walk = speed_walk*0.9;
update creature_template set speed_run = speed_run*0.9;
批量制作装备其实可以自己导出一件现成的装备出来看懂了就可以自己DIY了,修改属性的话方法也有很多种
UPDATE item_template SET stat_value1 = stat_value1*3
UPDATE item_template SET stat_value2 = stat_value2*3;
UPDATE item_template SET stat_value3 = stat_value3*3;
UPDATE item_template SET stat_value4 = stat_value4*3;
UPDATE item_template SET stat_value5 = stat_value5*3;
这个SQL命令是把装备第一条到第五条属性调高3倍
当然也可以选单独某一种属性加强
比如
update item_template set stat_value1 = stat_value1*2 where stat_type1 = 3;
update item_template set stat_value2 = stat_value2*2 where stat_type2 = 3;
update item_template set stat_value3 = stat_value3*2 where stat_type3 = 3;
update item_template set stat_value4 = stat_value4*2 where stat_type4 = 3;
update item_template set stat_value5 = stat_value5*2 where stat_type5 = 3;
意思就是说这装备1到5条属性中如果属性是敏捷(stat_type3=3)的话就乘以2
3是(敏捷),4(力量),5(智力),6(精神) 其他的百度一下不太记得了 装备属性几十种吧 还有命中等级 暴击等级这些
如果还想要制作属性随人物等级变化就是传家宝装备属性需要制作DBC了,还是慢慢摸索去
0,无
1,生命值
2,法力值
3,敏捷
4,力量
5,智力
6,精神
7,耐力
12,防御等级
13,躲闪等级
14,招架等级
15,盾牌格挡
16,近战命中
17,远程命中
18,法术命中
19,近战暴击
20,远程暴击
21,法术暴击
22,近战躲闪
23,远程躲闪
24,法术躲闪
25,近战暴击躲闪
26,远程暴击躲闪
27,法术暴击躲闪
28,近战攻击速度
29,远程攻击速度
30,法术攻击速度
31,命中等级
32,暴击等级
33,命中躲闪
34,暴击躲闪
35,韧性
36,急速攻击速度
37,精准等级
38,攻击强度
39,远程攻击强度
40,猎豹、熊、巨熊、枭兽形态攻击强度
41,法术治疗效果
42,法术伤害效果
43,5秒回蓝
44,护甲穿透等级
45,法术强度
update item_template set stat_value1 = stat_value1*5 where stat_type1 = 45;
update item_template set stat_value2 = stat_value2*5 where stat_type1 = 45;
update item_template set stat_value3 = stat_value3*5 where stat_type1 = 45;
update item_template set stat_value4 = stat_value4*5 where stat_type1 = 45;
update item_template set stat_value5 = stat_value5*5 where stat_type1 = 45;
update item_template set stat_value6 = stat_value6*5 where stat_type1 = 45;
update item_template set stat_value7 = stat_value7*5 where stat_type1 = 45;
update item_template set stat_value8 = stat_value8*5 where stat_type1 = 45;
update item_template set stat_value9 = stat_value9*5 where stat_type1 = 45;
update item_template set stat_value10 = stat_value10*5 where stat_type1 = 45;
采集量增加及可叠加物品叠加量增加SQL语句
UPDATE item_template SET stackable = 9999 where stackable > 1 ; /所有堆叠数大于1的改为9999/
UPDATE item_template SET stackable ='9999' WHERE ( entry ='6265') ; /灵魂碎片堆叠数改为9999/
UPDATE skinning_loot_template SET maxcount = 20 ; /剥皮最大产量为20单位/
UPDATE fishing_loot_template SET maxcount = 20 ; /* 钓鱼*/
UPDATE prospecting_loot_template SET maxcount = 20 ; /采矿附产品(孔雀石、虎眼石、等)最大产量为20单位/
UPDATE creature_loot_template SET maxcount ='20' WHERE item ='2589' ; /亚麻布最大产量为20/
UPDATE creature_loot_template SET maxcount ='20' WHERE item ='2592' ; /毛料/
UPDATE creature_loot_template SET maxcount ='20' WHERE item ='4306' ; /丝绸/
UPDATE creature_loot_template SET maxcount ='20' WHERE item ='4338' ; /* 魔纹布*/
UPDATE creature_loot_template SET maxcount ='20' WHERE item ='14047' ; /符文布/
UPDATE creature_loot_template SET maxcount ='20' WHERE item ='14256' ; /* 恶魔布*/
UPDATE creature_loot_template SET maxcount ='20' WHERE item ='21877' ; /* 灵纹布*/
UPDATE gameobject SET spawntimesecs = 5 ; /* 草、矿、宝箱等刷新时间为5秒*/
UPDATE item_template SET spellcategorycooldown_1 = 5000 where spellcategorycooldown_1 = 120000 and class = 0 ; /* 将药水的冷却时间设为5秒*/
update item_template set stackble=2*stackable where stackable>1
这一段命令的意思是,所有stackble这一列的数字大于1的,通通把它们乘以2,你可以乘以5,甚至10,优点是,只要自己记得倍数,随时可以修改回去,缺点是,像弓箭神马的本来叠加数量就大,像这些很容易服务端报错。
为了稳当,也可以自己多弄几次,如
update item_template set stackable=200 where stackable=20
这段意思就是把stackble这一列等于20的数,通通改成200,这样修改的优点是准确,缺点是如果想改的叠加物品数量不同,需要多弄几次
所有装备宝石开3孔,所有装备宝石镶嵌满奖励全属性+10。
update item_template set socketColor_1 = 2;
update item_template set socketColor_2 = 4;
update item_template set socketColor_3 = 8;
update item_template set socketContent_1 = 0;
update item_template set socketContent_2 = 0;
update item_template set socketContent_3 = 0;
update item_template set socketBonus = 3879;
PS:3879是全属性+10的效果,当然你也可以设置成你想要的技能效果。
去除装备上的唯一属性
UPDATE item_template SET Maxcount = 0;
装备等级要求全部改为1,1级可以穿T10了。
update item_template set requiredlevel=1;
去除职业限制
update item_template set allowableclass = -1
去种族限制
update item_template set AllowableRace= -1;
物品堆积数量 UPDATE item_template set stackable = '9999' WHERE stackable > '1';
免费学技能
update npc_trainer set spellcost
= 0;
/任务最小接受等级降低3级/
update quest_template set minlevel=minlevel-3 where minlevel>5;
/每级获得生命值提高20%/
update player_classlevelstats set basehp = basehp*1.2;
/物品需求等级降低10%/
update item_template set RequiredLevel = RequiredLevel*0.9;
/技能学习等级需求降低20%/
update npc_trainer set ReqLevel = ReqLevel*0.8;
/去除物品使用种族、职业限制/
update item_template set allowableclass = -1;
update item_template set AllowableRace=-1;
/任务获得5倍于经验的竞技场点数/
update quest_template set RewardArenaPoints=RewardXPID*5;
/所有物品无限量持有和叠加/
UPDATE item_template SET Maxcount = 0;
update item_template set stackable = 9999 where stackable>1;
/物品售价提高10%/
update item_template set sellprice=sellprice*1.1;
/怪物移动速度减低20%/
update creature_template set speed_walk = speed_walk*0.8;
update creature_template set speed_run = speed_run*0.8;
/boss吃控制技能/
UPDATE creature_template SET mechanic_immune_mask = 0 where rank>=0;
/任务物品100%掉落/
update creature_loot_template set ChanceOrQuestChance = -100 where ChanceOrQuestChance<0;
/清除副本进度信息/
delete from characters.instance_reset;
/怪物、物品刷新时间缩短/
update creature set spawntimesecs = spawntimesecs*0.5 where spawntimesecs>=180 and spawntimesecs<=600;
update gameobject set spawntimesecs = spawntimesecs*0.5 where spawntimesecs>=180 and spawntimesecs<=600;
update creature set spawntimesecs = spawntimesecs*0.3 where spawntimesecs>600 and spawntimesecs<=3600;
update gameobject set spawntimesecs = spawntimesecs*0.3 where spawntimesecs>600 and spawntimesecs<=3600;
/所有怪吃控制技能/
update creature_template set mechanic_immune_mask=0;
修改玩家默认32767伤害属性的限制SQL语句
ALTER TABLE item_template
CHANGE stat_value1
stat_value1
int(30) default '0';
ALTER TABLE item_template
CHANGE stat_value2
stat_value2
int(30) default '0';
ALTER TABLE item_template
CHANGE stat_value3
stat_value3
int(30) default '0';
ALTER TABLE item_template
CHANGE stat_value4
stat_value4
int(30) default '0';
ALTER TABLE item_template
CHANGE stat_value5
stat_value5
int(30) default '0';
ALTER TABLE item_template
CHANGE stat_value6
stat_value6
int(30) default '0';
ALTER TABLE item_template
CHANGE stat_value7
stat_value7
int(30) default '0';
ALTER TABLE item_template
CHANGE stat_value8
stat_value8
int(30) default '0';
ALTER TABLE item_template
CHANGE stat_value9
stat_value9
int(30) default '0';
ALTER TABLE item_template
CHANGE stat_value10
stat_value10
int(30) default '0';
ALTER TABLE item_template
CHANGE dmg_min1
dmg_min1
int(30) default '0';
ALTER TABLE item_template
CHANGE dmg_max1
dmg_max1
int(30) default '0';
ALTER TABLE item_template
CHANGE dmg_min2
dmg_min2
int(30) default '0';
ALTER TABLE item_template
CHANGE dmg_max2
dmg_max2
int(30) default '0';
批量给弓,弩,枪+46699,装备:索利达尔在弓弦张开时会自动制造魔法箭,无须额外配备箭矢
update item_template set item_template.spellid_5='46699',item_template.spelltrigger_5='1',item_template.spellcooldown_5='-1',item_template.spellcategory_5='0',item_template.spellcategorycooldown_5='-1'where item_template.class='2' and item_template.subclass in (2,3,18);
去除炉石冷却时间
update item_template set spellcooldown_1=1 where entry=6948;
去除装备上的唯一属性
UPDATE item_template SET Maxcount = 0;
护甲
UPDATE item_template SET armor = armor*3;
最小和最大武器伤害值
UPDATE item_template SET dmg_min1 = dmg_min1*3;
UPDATE item_template SET dmg_max1 = dmg_max1*3;
武器攻击速度延迟 /2是除2的意思
UPDATE item_template SET delay = delay/2;
装备的抵抗抗性
UPDATE creature_classlevelstats SET basehp0 = 10000 and basehp1 = 10000 and basehp2 = 10000 and basemana = 10000 and basearmor = 10000 WHERE level >=84;
UPDATE item_template SET fire_res = fire_res*5;
UPDATE item_template SET nature_res = nature_res*5;
UPDATE item_template SET frost_res = frost_res*5;
UPDATE item_template SET shadow_res = shadow_res*5;
UPDATE item_template SET arcane_res = arcane_res*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*7 WHERE stat_type1=7;
UPDATE item_template SET stat_value2 = stat_value2*7 WHERE stat_type2=7;
UPDATE item_template SET stat_value3 = stat_value3*7 WHERE stat_type3=7;
UPDATE item_template SET stat_value4 = stat_value4*7 WHERE stat_type4=7;
UPDATE item_template SET stat_value5 = stat_value5*7 WHERE stat_type5=7;
UPDATE item_template SET stat_value6 = stat_value3*7 WHERE stat_type6=7;
UPDATE item_template SET stat_value7 = stat_value7*7 WHERE stat_type7=7;
UPDATE item_template SET stat_value8 = stat_value8*7 WHERE stat_type8=7;
UPDATE item_template SET stat_value9 = stat_value9*7 WHERE stat_type9=7;
UPDATE item_template SET stat_value10 = stat_value10*7 WHERE stat_type10=7;
修改防御等级
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=12;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=12;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=12;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=12;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=12;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=12;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=12;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=12;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=12;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=12;
修改躲避等级
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=13;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=13;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=13;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=13;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=13;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=13;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=13;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=13;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=13;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=13;
修改招架等级
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=14;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=14;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=14;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=14;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=14;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=14;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=14;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=14;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=14;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=14;
修改盾格档等级
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=15;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=15;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=15;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=15;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=15;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=15;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=15;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=15;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=15;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=15;
修改近战命中等级
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=16;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=16;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=16;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=16;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=16;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=16;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=16;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=16;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=16;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=16;
修改远程命中等级
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=17;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=17;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=17;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=17;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=17;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=17;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=17;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=17;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=17;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=17;
修改法术命中等级
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=18;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=18;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=18;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=18;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=18;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=18;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=18;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=18;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=18;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=18;
修改近战躲避
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=22;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=22;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=22;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=22;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=22;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=22;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=22;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=22;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=22;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=22;
修改远程躲避
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=23;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=23;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=23;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=23;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=23;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=23;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=23;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=23;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=23;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=23;
修改法术躲避
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=24;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=24;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=24;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=24;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=24;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=24;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=24;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=24;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=24;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=24;
修改近战暴击躲闪
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=25;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=25;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=25;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=25;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=25;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=25;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=25;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=25;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=25;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=25;
修改远程暴击躲闪
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=26;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=26;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=26;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=26;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=26;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=26;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=26;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=26;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=26;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=26;
修改法术暴击躲闪
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=27;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=27;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=27;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=27;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=27;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=27;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=27;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=27;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=27;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=27;
修改近战攻击速度
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=28;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=28;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=28;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=28;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=28;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=28;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=28;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=28;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=28;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=28;
修改远程攻击速度
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=29;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=29;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=29;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=29;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=29;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=29;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=29;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=29;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=29;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=29;
修改法术攻击速度
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=30;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=30;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=30;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=30;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=30;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=30;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=30;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=30;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=30;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=30;
修改命中等级
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=31;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=31;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=31;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=31;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=31;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=31;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=31;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=31;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=31;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=31;
修改命中躲闪
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=33;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=33;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=33;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=33;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=33;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=33;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=33;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=33;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=33;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=33;
修改暴击躲闪
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=34;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=34;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=34;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=34;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=34;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=34;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=34;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=34;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=34;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=34;
修改韧性
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=35;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=35;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=35;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=35;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=35;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=35;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=35;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=35;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=35;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=35;
修改急速攻击速度
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=36;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=36;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=36;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=36;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=36;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=36;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=36;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=36;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=36;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=36;
修改精准等级
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=37;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=37;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=37;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=37;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=37;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=37;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=37;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=37;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=37;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=37;
修改攻击强度
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=38;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=38;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=38;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=38;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=38;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=38;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=38;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=38;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=38;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=38;
修改远程攻击强度
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=39;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=39;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=39;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=39;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=39;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=39;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=39;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=39;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=39;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=39;
修改猎豹、熊、巨熊、枭兽形态攻击强度
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=40;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=40;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=40;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=40;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=40;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=40;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=40;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=40;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=40;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=40;
修改法术治疗效果
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=41;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=41;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=41;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=41;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=41;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=41;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=41;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=41;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=41;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=41;
修改法术治疗效果
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=42;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=42;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=42;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=42;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=42;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=42;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=42;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=42;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=42;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=42;
修改5秒回蓝
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=43;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=43;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=43;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=43;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=43;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=43;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=43;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=43;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=43;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=43;
修改护甲穿透等级
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=44;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=44;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=44;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=44;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=44;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=44;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=44;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=44;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=44;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=44;
修改法术强度
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=45;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=45;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=45;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=45;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=45;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=45;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=45;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=45;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=45;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=45;
学习所有技能不要钱
update npc_trainer set spellcost=0;
宠物血量
UPDATE pet_levelstats SET hp = hp*10;
宠物蓝量
UPDATE pet_levelstats SET mana = mana*10;
宠物护甲
UPDATE pet_levelstats SET armor = armor*10;
宠物力量
UPDATE pet_levelstats SET str = str*5;
宠物敏捷
UPDATE pet_levelstats SET agi = agi*5;
宠物耐力
UPDATE pet_levelstats SET sta = sta*10;
宠物智力
UPDATE pet_levelstats SET inte = inte*5;
宠物精神
UPDATE pet_levelstats SET spi = spi*10;
UPDATE item_template set spellcooldown_1=1 where entry=6948;
UPDATE item_template SET Maxcount = 0;
UPDATE item_template SET armor = armor*3;
UPDATE item_template SET dmg_min1 = dmg_min1*3;
UPDATE item_template SET dmg_max1 = dmg_max1*3;
UPDATE item_template SET delay = delay/2;
UPDATE item_template SET holy_res = holy_res*5;
UPDATE item_template SET fire_res = fire_res*5;
UPDATE item_template SET nature_res = nature_res*5;
UPDATE item_template SET frost_res = frost_res*5;
UPDATE item_template SET shadow_res = shadow_res*5;
UPDATE item_template SET arcane_res = arcane_res*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*7 WHERE stat_type1=7;
UPDATE item_template SET stat_value2 = stat_value2*7 WHERE stat_type2=7;
UPDATE item_template SET stat_value3 = stat_value3*7 WHERE stat_type3=7;
UPDATE item_template SET stat_value4 = stat_value4*7 WHERE stat_type4=7;
UPDATE item_template SET stat_value5 = stat_value5*7 WHERE stat_type5=7;
UPDATE item_template SET stat_value6 = stat_value3*7 WHERE stat_type6=7;
UPDATE item_template SET stat_value7 = stat_value7*7 WHERE stat_type7=7;
UPDATE item_template SET stat_value8 = stat_value8*7 WHERE stat_type8=7;
UPDATE item_template SET stat_value9 = stat_value9*7 WHERE stat_type9=7;
UPDATE item_template SET stat_value10 = stat_value10*7 WHERE stat_type10=7;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=12;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=12;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=12;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=12;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=12;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=12;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=12;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=12;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=12;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=12;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=13;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=13;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=13;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=13;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=13;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=13;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=13;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=13;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=13;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=13;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=14;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=14;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=14;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=14;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=14;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=14;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=14;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=14;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=14;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=14;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=15;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=15;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=15;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=15;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=15;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=15;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=15;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=15;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=15;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=15;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=16;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=16;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=16;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=16;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=16;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=16;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=16;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=16;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=16;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=16;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=17;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=17;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=17;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=17;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=17;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=17;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=17;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=17;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=17;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=17;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=18;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=18;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=18;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=18;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=18;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=18;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=18;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=18;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=18;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=18;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=22;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=22;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=22;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=22;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=22;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=22;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=22;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=22;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=22;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=22;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=23;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=23;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=23;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=23;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=23;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=23;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=23;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=23;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=23;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=23;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=24;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=24;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=24;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=24;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=24;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=24;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=24;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=24;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=24;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=24;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=25;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=25;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=25;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=25;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=25;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=25;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=25;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=25;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=25;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=25;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=26;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=26;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=26;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=26;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=26;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=26;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=26;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=26;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=26;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=26;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=27;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=27;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=27;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=27;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=27;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=27;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=27;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=27;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=27;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=27;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=28;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=28;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=28;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=28;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=28;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=28;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=28;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=28;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=28;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=28;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=29;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=29;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=29;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=29;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=29;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=29;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=29;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=29;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=29;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=29;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=30;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=30;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=30;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=30;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=30;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=30;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=30;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=30;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=30;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=30;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=31;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=31;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=31;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=31;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=31;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=31;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=31;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=31;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=31;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=31;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=33;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=33;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=33;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=33;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=33;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=33;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=33;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=33;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=33;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=33;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=34;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=34;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=34;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=34;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=34;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=34;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=34;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=34;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=34;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=34;
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=35;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=35;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=35;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=35;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=35;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=35;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=35;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=35;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=35;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=35;
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=36;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=36;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=36;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=36;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=36;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=36;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=36;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=36;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=36;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=36;
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=37;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=37;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=37;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=37;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=37;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=37;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=37;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=37;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=37;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=37;
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=38;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=38;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=38;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=38;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=38;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=38;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=38;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=38;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=38;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=38;
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=39;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=39;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=39;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=39;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=39;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=39;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=39;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=39;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=39;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=39;
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=40;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=40;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=40;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=40;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=40;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=40;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=40;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=40;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=40;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=40;
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=41;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=41;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=41;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=41;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=41;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=41;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=41;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=41;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=41;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=41;
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=42;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=42;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=42;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=42;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=42;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=42;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=42;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=42;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=42;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=42;
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=43;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=43;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=43;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=43;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=43;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=43;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=43;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=43;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=43;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=43;
UPDATE item_template SET stat_value1 = stat_value1*2 WHERE stat_type1=44;
UPDATE item_template SET stat_value2 = stat_value2*2 WHERE stat_type2=44;
UPDATE item_template SET stat_value3 = stat_value3*2 WHERE stat_type3=44;
UPDATE item_template SET stat_value4 = stat_value4*2 WHERE stat_type4=44;
UPDATE item_template SET stat_value5 = stat_value5*2 WHERE stat_type5=44;
UPDATE item_template SET stat_value6 = stat_value6*2 WHERE stat_type6=44;
UPDATE item_template SET stat_value7 = stat_value7*2 WHERE stat_type7=44;
UPDATE item_template SET stat_value8 = stat_value8*2 WHERE stat_type8=44;
UPDATE item_template SET stat_value9 = stat_value9*2 WHERE stat_type9=44;
UPDATE item_template SET stat_value10 = stat_value10*2 WHERE stat_type10=44;
UPDATE item_template SET stat_value1 = stat_value1*5 WHERE stat_type1=45;
UPDATE item_template SET stat_value2 = stat_value2*5 WHERE stat_type2=45;
UPDATE item_template SET stat_value3 = stat_value3*5 WHERE stat_type3=45;
UPDATE item_template SET stat_value4 = stat_value4*5 WHERE stat_type4=45;
UPDATE item_template SET stat_value5 = stat_value5*5 WHERE stat_type5=45;
UPDATE item_template SET stat_value6 = stat_value6*5 WHERE stat_type6=45;
UPDATE item_template SET stat_value7 = stat_value7*5 WHERE stat_type7=45;
UPDATE item_template SET stat_value8 = stat_value8*5 WHERE stat_type8=45;
UPDATE item_template SET stat_value9 = stat_value9*5 WHERE stat_type9=45;
UPDATE item_template SET stat_value10 = stat_value10*5 WHERE stat_type10=45;
update npc_trainer set spellcost=0;
UPDATE pet_levelstats SET hp = hp*10;
UPDATE pet_levelstats SET mana = mana*10;
UPDATE pet_levelstats SET armor = armor*10;
UPDATE pet_levelstats SET str = str*5;
UPDATE pet_levelstats SET agi = agi*5;
UPDATE pet_levelstats SET sta = sta*10;
UPDATE pet_levelstats SET inte = inte*5;
UPDATE pet_levelstats SET spi = spi*10;