Commit 640a0b92a4ef7d110faf86a4742d235fac5f242f
1 parent
1ded5e75
怪物数值成长表
Showing
3 changed files
with
36 additions
and
0 deletions
Show diff stats
No preview for this file type
Datas/pro2d/hero.xlsx
No preview for this file type
Defines/pro2d.xml
... | ... | @@ -811,6 +811,35 @@ |
811 | 811 | <var name="SkillConfigLevel" type="int"/> |
812 | 812 | </bean> |
813 | 813 | |
814 | + | |
815 | + | |
816 | + <bean name="MonsterLvUp"> | |
817 | + <var name="MonsterLvID" type="int"/> | |
818 | + <var name="LvAtk" type="int"/> | |
819 | + <var name="LvWeaknessDef" type="int"/> | |
820 | + <var name="LvNormalDef" type="int"/> | |
821 | + <var name="LvHP" type="int"/> | |
822 | + <var name="LvCrit" type="int"/> | |
823 | + <var name="LvCritHurt" type="int"/> | |
824 | + <var name="LvDodge" type="int"/> | |
825 | + <var name="LvBlock" type="int"/> | |
826 | + <var name="LvParry" type="int"/> | |
827 | + </bean> | |
828 | + | |
829 | + <bean name="MonsterJob"> | |
830 | + <var name="MonsterJobID" type="int"/> | |
831 | + <var name="JobAtkWeight" type="float"/> | |
832 | + <var name="JobDefWeight" type="float"/> | |
833 | + <var name="JobHpWeight" type="float"/> | |
834 | + </bean> | |
835 | + | |
836 | + <bean name="MonsterType"> | |
837 | + <var name="MonsterTypeID" type="int"/> | |
838 | + <var name="TypeAtkWeight" type="float"/> | |
839 | + <var name="TypeDefWeight" type="float"/> | |
840 | + <var name="TypeHpWeight" type="float"/> | |
841 | + </bean> | |
842 | + | |
814 | 843 | <bean name="Materials"> |
815 | 844 | <var name="ItemID" type="int"/> |
816 | 845 | <var name="ItemNum" type="int"/> |
... | ... | @@ -1148,6 +1177,7 @@ |
1148 | 1177 | <table name="TbGlobalBaseDatas" value="GlobalBaseDatas" input="pro2d/BaseData@GlobalBaseDatas.xlsx"/> |
1149 | 1178 | <table name="TbGlobalListDatas" value="GlobalListDatas" input="pro2d/List@GlobalBaseDatas.xlsx"/> |
1150 | 1179 | <table name="TbGlobalDictDatas" value="GlobalDictDatas" input="pro2d/Dictionary@GlobalBaseDatas.xlsx"/> |
1180 | + | |
1151 | 1181 | <table name="TbGemAttention" value="GemAttention" input="pro2d/GemAttention.xlsx"/> |
1152 | 1182 | <table name="TbGemCreateLimit" value="GemCreateLimit" input="pro2d/GemCreateLimit.xlsx"/> |
1153 | 1183 | <table name="TbGemCreateGroup" value="GemCreateGroup" input="pro2d/GemCreateGroup.xlsx"/> |
... | ... | @@ -1173,7 +1203,13 @@ |
1173 | 1203 | <table name="TbLuckyCoinGroup" value="LuckyCoinGroup" input="pro2d/LuckyCoinGroup.xlsx"/> |
1174 | 1204 | <table name="TbMainChapter" value="MainChapter" input="pro2d/MainChapter.xlsx"/> |
1175 | 1205 | <table name="TbMonsterWave" value="MonsterWave" input="pro2d/MonsterWave.xlsx"/> |
1206 | + | |
1207 | + <table name="TbMonsterLvUp" value="MonsterLvUp" input="pro2d/MonsterLvUp@MonsterUpValue.xlsx"/> | |
1208 | + <table name="TbMonsterJob" value="MonsterJob" input="pro2d/MonsterJob@MonsterUpValue.xlsx"/> | |
1209 | + <table name="TbMonsterType" value="MonsterType" input="pro2d/MonsterType@MonsterUpValue.xlsx"/> | |
1210 | + | |
1176 | 1211 | <table name="TbMysticalPowerBUFF" value="MysticalPowerBUFF" input="pro2d/MysticalPowerBUFF.xlsx"/> |
1212 | + | |
1177 | 1213 | |
1178 | 1214 | <table name="TbOpenBox" value="OpenBox" input="pro2d/OpenBox.xlsx"/> |
1179 | 1215 | <table name="TbPopupsDatas" value="PopupsDatas" input="pro2d/PopupsDatas.xlsx"/> | ... | ... |