_spellmod_base

时间:2022-12-26 18:29:36

技能基础修改(进去可能会改动)

可以配合数据库的spell_dbc在线制作无补丁技能。

具体效果查询DBC表

`spellid` int(11) NOT NULL DEFAULT '0',
`Effect1` tinyint(3) NOT NULL DEFAULT '0',
`Effect2` tinyint(3) NOT NULL DEFAULT '0',
`Effect3` tinyint(3) NOT NULL DEFAULT '0',
`AuraName1` int(11) NOT NULL DEFAULT '0',
`AuraName2` int(11) NOT NULL DEFAULT '0',
`AuraName3` int(11) NOT NULL DEFAULT '0',
`MiscValue1` tinyint(11) NOT NULL DEFAULT '0',
`MiscValue2` tinyint(11) NOT NULL DEFAULT '0',
`MiscValue3` tinyint(11) NOT NULL DEFAULT '0',
`BasePoints1` int(11) NOT NULL DEFAULT '0',
`BasePoints2` int(11) NOT NULL DEFAULT '0',
`BasePoints3` int(11) NOT NULL DEFAULT '0',
`SpellMaskA1` int(11) NOT NULL DEFAULT '0',
`SpellMaskA2` int(11) NOT NULL DEFAULT '0',
`SpellMaskA3` int(11) NOT NULL DEFAULT '0',
`SpellMaskB1` int(11) NOT NULL DEFAULT '0',
`SpellMaskB2` int(11) NOT NULL DEFAULT '0',
`SpellMaskB3` int(11) NOT NULL DEFAULT '0',
`SpellMaskC1` int(11) NOT NULL DEFAULT '0',
`SpellMaskC2` int(11) NOT NULL DEFAULT '0',
`SpellMaskC3` int(11) NOT NULL DEFAULT '0',
`EffectTarget1` tinyint(3) NOT NULL DEFAULT '1',
`EffectTarget2` tinyint(3) NOT NULL DEFAULT '1',
`EffectTarget3` tinyint(3) NOT NULL DEFAULT '1',
`targetspell1` int(11) NOT NULL DEFAULT '0',
`targetspell2` int(11) NOT NULL DEFAULT '0',
`targetspell3` int(11) NOT NULL DEFAULT '0',
`cooldown` int(11) NOT NULL DEFAULT '0',
`targetflag` int(11) NOT NULL DEFAULT '0',
`chance` int(11) NOT NULL DEFAULT '0',
`charges` int(11) NOT NULL DEFAULT '0',
`SpellFamilyName` tinyint(3) NOT NULL DEFAULT '0',
`spellpct1` tinyint(3) NOT NULL DEFAULT '0',
`spellpct2` tinyint(3) NOT NULL DEFAULT '0',
`spellpct3` tinyint(3) NOT NULL DEFAULT '0',
`flags` int(11) NOT NULL DEFAULT '0',
`notcast` tinyint(3) NOT NULL DEFAULT '0',
`command` varchar(255) NOT NULL DEFAULT '',

_spellmod_base的更多相关文章

    随机推荐

    1. mysql5.6安装

      mysql5.6安装 #卸载原有的mysqlyum remove mysql*ls /etc/my.cnf*mv /etc/my.cnf* /tmp/ #安装依赖包yum install make c ...

    2. php获取文件后缀名格式

      function get_extension($file) { substr(strrchr($file, '.'), 1); } 第2种方法: function get_extension($fil ...

    3. new 的用法

       在C#中,new关键字有三种用法: 1.new 运算符,用于创建对象和调用构造函数. 2.new  修饰符,在用作修饰符时,new关键字可以显式隐藏从基类继承的成员. 3.new 约束 ,用于在泛型 ...

    4. BZOJ 1627: [Usaco2007 Dec]穿越泥地( BFS )

      BFS... --------------------------------------------------------------------------------------- #incl ...

    5. 基于FPGA的均值滤波算法的实现

      前面实现了基于FPGA的彩色图像转灰度处理,减小了图像的体积,但是其中还是存在许多噪声,会影响图像的边缘检测,所以这一篇就要消除这些噪声,基于灰度图像进行图像的滤波处理,为图像的边缘检测做好夯实基础. ...

    6. win10 安装mingw ruby rails

      原文可以参考 https://ruby-china.org/topics/17581 在window10 安装ruby rails https://rubyinstaller.org/download ...

    7. spring boot 集成Thymeleaf

                                             

    8. python爬虫之一:requests库

      目录 安装requtests requests库的连接异常 HTTP协议 HTTP协议对资源的操作 requests库的7个主要方法 request方法 get方法 网络爬虫引发的问题 robots协 ...

    9. springboot集成jpa,在postgresql数据库中创建主键自增表

      依赖文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http:/ ...

    10. Python常用模块之Pygame&lpar;手册篇:首页&rpar;

      Pygame手册官方网址:http://www.pygame.org/docs/ Pygame首页 说明文档: 自述 关于Pygame的基本信息,它是什么,谁参与了以及在哪里找到它. 安装 在几个平台 ...

    相关文章