Commit 0a70f452e0ffa0c4ab0d2d60599c3382e14aeb28
1 parent
80ce2777
hero表增加转生材料ID,增加转生材料表
Showing
6 changed files
with
12 additions
and
0 deletions
Show diff stats
Datas/__enums__.xlsx
No preview for this file type
Datas/common/FUIPanel.xlsx
No preview for this file type
Datas/pro2d/AccountLevelExp.xlsx
No preview for this file type
Datas/pro2d/HeroLevelExp.xlsx
No preview for this file type
Datas/pro2d/hero.xlsx
No preview for this file type
Defines/pro2d.xml
| ... | ... | @@ -34,6 +34,7 @@ |
| 34 | 34 | <var name="ceRevise" type="float"/> |
| 35 | 35 | <var name="hpBarYpos" type="int"/> |
| 36 | 36 | <var name="lvUpType" type="int"/> |
| 37 | + <var name="MaterialsListID" type="int"/> | |
| 37 | 38 | <var name="atks" type="map,NumericType,int"/> |
| 38 | 39 | <var name="defs" type="map,NumericType,int"/> |
| 39 | 40 | </bean> |
| ... | ... | @@ -304,6 +305,16 @@ |
| 304 | 305 | <var name="GoodsDataStructs" type="map,int,GoodsDataStruct"/> |
| 305 | 306 | </bean> |
| 306 | 307 | |
| 308 | + <bean name="Materials"> | |
| 309 | + <var name="ItemID" type="int"/> | |
| 310 | + <var name="ItemNum" type="int"/> | |
| 311 | + </bean> | |
| 312 | + | |
| 313 | + <bean name="HeroReinMaterials"> | |
| 314 | + <var name="MaterialsListID" type="int"/> | |
| 315 | + <var name="MaterialsList" type="list,Materials"/> | |
| 316 | + </bean> | |
| 317 | + | |
| 307 | 318 | <bean name="AccountLevelExp"> |
| 308 | 319 | <var name="level" type="int"/> |
| 309 | 320 | <var name="needExp" type="int"/> |
| ... | ... | @@ -509,6 +520,7 @@ |
| 509 | 520 | <table name="TbIntervalTable" value="IntervalTable" input="pro2d/IntervalTable.xlsx"/> |
| 510 | 521 | <table name="TbStoreDatas" value="StoreDatas" input="pro2d/StoreDatas.xlsx"/> |
| 511 | 522 | <table name="TbRechargeDatas" value="RechargeDatas" input="pro2d/RechargeDatas.xlsx"/> |
| 523 | + <table name="TbHeroReinMaterials" value="HeroReinMaterials" input="pro2d/HeroReinMaterials.xlsx"/> | |
| 512 | 524 | |
| 513 | 525 | <table name="TbAccountLevelExp" value="AccountLevelExp" input="pro2d/AccountLevelExp.xlsx"/> |
| 514 | 526 | <table name="TbHeroLevelExp" value="HeroLevelExp" input="pro2d/HeroLevelExp.xlsx"/> | ... | ... |