Spell-DBC

Spell.dbc

1  ID
2  Attributes               属性
3  AttributesEx             属性
4  AttributesExB            属性
5  AttributesExC            属性
6  AttributesExD            属性
7  AttributesExE            属性
8  AttributesExF            属性
9  AttributesExG            属性
10  AttributesExH           属性
11  unk_400_1               未知
12  CastTimesID             法术时间 --> SpellCastTimes.dbc
13  DurationID              持续时间->SpellDuration.dbc
14  PowerID                 伤害ID ->SpellPower.dbc
15  RangeID                 范围ID-> SpellRange.dbc
16  Speed                   速度
17  VisualID1               可见性ID ->SpellVisual.dbc
18  VisualID2               可见性ID ->SpellVisual.dbc
19  IconID1                 图标ID ->SpellIcon.dbc
20  IconID2                 图标ID ->SpellIcon.dbc
21  Name                    名称
22  NameSubtext             子名称
23  Description             描述
24  AuraDescription         Aura描述
25  SchoolMask              类别
26  RuneCostID              消耗符文点数的ID ->SpellRuneCost.dbc
27  MissileID               投掷物ID ->SpellMissile.dbc
28  DescriptionVariablesID  什么描述   ->SpellDescriptionVariables.dbc
29  DifficultyID            难度ID ->SpellDifficulty.dbc
30  unk_400_2               未知
31  ScalingID               缩放比例ID- >SpellScaling.dbc
32  AuraOptionsID           Aura 参数ID ->SpellAuraOptions.dbc
33  AuraRestrictionsID      Aura限制ID ->SpellAuraRestrictions.dbc
34  CastingRequirementsID   技能使用需求ID ->SpellCastingRequirements.dbc
35  CategoriesID            类别ID -> SpellCategories.dbc  --- 死亡后BUFF是否消失 --28519不消失
36  ClassOptionsID          职业参数 ->SpellClassOptions.dbc
37  CooldownsID             冷却ID -> SpellCooldowns.dbc
38  unk_400_3               未知
39  EquippedItemsID         装备武器ID ->SpellEquippedItems.dbc
40  InterruptsID            打断技能ID ->SpellInterrupts.dbc
41  LevelsID                技能等级ID ->SpellLevels.dbc
42  PowerID                 技能伤害ID -> SpellPower.dbc
43  ReagentsID              技能反射ID ->SpellReagents.dbc
44  ShapeshiftID            技能外形状修改ID ->SpellShapeshift.dbc
45  TargetRestrictionsID    目标限制ID ->SpellTargetRestrictions.dbc
46  TotemsID                图腾ID ->SpellTotems.dbc
47  unk_400_4

SpellCastTimes.dbc
1  ID
2  CastTime                 发送技能的时间
3  CastTimePerLevel         每个等级玩家发送技能的时间
4  MinCastTime              最少的技能发送时间

SpellDuration.dbc
1  ID
2  BaseDuration             基础持续时间
3  PerLevel                 每个等级的增加量?
4  MaxDuration              最多的持续时间

SpellPower.dbc
1  ID
2  Cost                     发送技能?
3  CostPerLevel             每个等级的发送技能?
4  CostPercentage           发送技能的百分比?
5  PerSecond                每秒?
6  PowerDisplayID           伤害的显示ID
7  unk2                     未知

SpellRange.dbc
1  ID
2  minRangeHostile          最小的旅馆内的释放范围?
3  minRangeFriend           最小的友好玩家的范围?
4  maxRangeHostile          最大的旅馆内的释放范围?
5  maxRangeFriend           最大的友好玩家的范围?
6  Type                     种类
7  Description              描述
8  ShortName                短名

SpellIcon.dbc
1  ID
2  File                     技能目标的.blp的文件路径,一般放在MPQ的 "Interface\Icons\[a-z_0-9]"这些地方

SpellRuneCost.dbc
1  ID
2  BloodRuneCost           血符文
3  UnholyRuneCost          邪恶符文
4  FrostRuneCost           冰霜符文
5  RunePowerGain           符文能量增加点数

SpellDescriptionVariables.dbc
1  ID
2  String                  描述内容

SpellDifficulty.dbc
1  ID
2  N10Man                  10人普通副本
3  N25Man                  25人普通副本
4  H10Man                  10人英雄副本
5  H25Man                  25人英雄副本

SpellScaling.dbc
1  ID
2  castTimeMin             技能释放最小时间
3  castTimeMax             技能释放最大时间
4  castTimeMaxLevel        释放时间的最大玩家等级
5  ClassID                 职业ID->ChrClasses.dbc
6  coefficient             系数
9  variance                差异
12  comboPointsCoefficient 连接点系数

SpellAuraOptions.dbc
1  ID
2  StackAmount             技能堆叠数量
3  ProcChance              过程的几率
4  ProcCharges             过程的负荷
5  ProcFlags               过程的Flags

SpellAuraRestrictions.dbc
1  ID
2  CasterAuraState         发送者的aura状态
3  TargetAuraState         目标的arua的状态
4  CasterAuraStateNot      发送者的aura状态无
5  TargetAuraStateNot      目标的arua的状态无
6  CasterAuraSpell         发送者的Aura技能
7  TargetAuraSpell         目标的Aura技能
8  ExcludeCasterAuraSpell  不包括发送者的Aura技能
9  ExcludeTargetAuraSpell  不包括目标的Aura技能

SpellCastingRequirements.dbc
1  ID
2  FacingCasterFlags
3  MinFactionID
4  MinReputation
5  AreaGroupID
6  RequiredAuraVision
7  RequiresSpellFocus

伤害范围说明:
1、spell.dbc中15列 RangeID  范围ID-> SpellRange.dbc -- 这个是距离多远才能释放
2、然后是EffectRadiusIndex[3] -->限制的是伤害范围
   这个数值的伤害范围需要到SpellRadius.dbc里面去找
   例如 150码伤害距离,那么在SpellRadius.dbc中就是41
那么对应的代码就是
        case 98934://修复 BOSS技能
            spellInfo->EffectRadiusIndex[0] = 41;
            count++;
            break;

这些在魔兽世界私服单机版中还是很有用处的

时间: 2024-08-01 10:45:03

Spell-DBC的相关文章

creature_template

1 entry 生物唯一编号 2 modelid_A 联盟模型ID,参考creature_model_info 3 modelid_A2 同上 4 modelid_H 部落模型ID,参考creature_model_info 5 modelid_H2 同上 6 name 名称 7 subname 副名字,称号 8 IconName 脚本图标,守卫专用 9 minlevel 最小等级 10 maxlevel 最大等级 11 minhealth 最小生命值 12 maxhealth 最大生命值 13

POJ 1035 Spell checker

题目链接 http://poj.org/problem?id=1035 Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 24142   Accepted: 8794 Description You, as a member of a development team for a new spell checking program, are to write a module that will check the cor

契约式设计(DbC)感想(二)

契约式设计6大原则的理解 在<Design by Contract原则与实践>中,作者定义了契约式设计的6大原则: 区分命令和查询: 将基本查询和派生查询区分开: 针对每个派生查询,设定一个后验条件,使用一个或多个基本查询的结果来定义它: 对于每个命令都撰写一个后验条件,规定每个基本查询的值: 对于每个查询和命令,采用一个合适的先验条件: 撰写不变式来定义对象的恒定特性. 前面5个针对operation层面而言,不论是面向对象也好,面向过程也好,函数式也好,都可以适用.最后1个针对data层面

契约式设计(DbC)感想

契约式设计可以理解为正则编程的一种实践: 如果用我的三脚猫能力将这种实践方法形式化的话,大致如下(如有不正确处,请不吝指正): 1.对于方法Method的precondition & postcondition: Function(RegularMthod) = ^ RegularFunction ^ General-Class-Method ^ Assert(precondition) ^ Assert(postcondition); => f1( f2 ) { f1, f2 : Regu

POJ1035 Spell checker

在做用户查找时 因为要把查找的结果动态加载和显示,所以,那些html元素要由Ajax动态生成.用户打开查找界面时,有系统推荐的用户,而当用户按条件查找后,查找的结果动态加载和显示.所以考虑到用js来搞. 这个for循环就是移除已有的表单.然后根据Ajax请求过来的数据,动态生成新的表单对象.一定要注意j变量从大往小循环,否则,删除div元素后会引起serchResultLenth=serchResult.children.length;长度的变化(这个问题摸索了好久,才搞定,切记) for(va

【ZOJ】3380 Patchouli&#39;s Spell Cards

http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3957 题意:m个位置,每个位置填1~n的数,求至少有L个位置的数一样的概率(1<=n,m,l<=100) #include <cstdio> #include <cstring> #include <algorithm> using namespace std; struct inum { static const int N=205,

[ACM] POJ 1035 Spell checker (单词查找,删除替换增加任何一个字母)

Spell checker Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 18693   Accepted: 6844 Description You, as a member of a development team for a new spell checking program, are to write a module that will check the correctness of given word

ZOJ3380- Patchouli&#39;s Spell Cards(概率DP+计数)

Patchouli's Spell Cards Time Limit: 7 Seconds      Memory Limit: 65536 KB Patchouli Knowledge, the unmoving great library, is a magician who has settled down in the Scarlet Devil Mansion (紅魔館). Her specialty is elemental magic employing the seven ele

1005. Spell It Right (20) -PAT

1005. Spell It Right (20) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue Given a non-negative integer N, your task is to compute the sum of all the digits of N, and output every digit of the sum in English. Input Specification: E