删除属性映射相关

This commit is contained in:
草莓 2025-01-16 13:17:19 +08:00
parent cc76d50a91
commit 1b4e77f23b
7 changed files with 5468 additions and 5715 deletions

View File

@ -4596,8 +4596,8 @@ EnemyPoint_List
/*EnemyPoint_List ['hp','atk','def','money','exp','point','name']*/;
Equip_List
: '力量'|'敏捷'|'智力'|'体质'|'生命'|'生命上限'|'攻击'|'物理防御'|'魔法防御'|'魔力'|'魔力上限'|'速度'
/*Equip_List ['str','agi','int','con','hp','hpmax','atk','def','mdef','mana','manamax','speed']*/;
: '生命'|'生命上限'|'攻击'|'防御'|'法强'|'魔力'|'魔力上限'|'速度'
/*Equip_List ['hp','hpmax','atk','def','mdef','mana','manamax','speed']*/;
Key_List
: '黄钥匙'|'蓝钥匙'|'红钥匙'|'绿钥匙'|'铁门钥匙'

View File

@ -187,24 +187,18 @@ var comment_c456ea59_6018_45ef_8bcc_211a24c627dc = {
"def": {
"_leaf": true,
"_type": "textarea",
"_data": "物理防御力"
"_data": "防御力"
},
"mdef": {
"_leaf": true,
"_type": "textarea",
"_data": "魔法防御力"
"_data": "法抗(写为小数)"
},
"speed": {
"_leaf": true,
"_type": "textarea",
"_data": "速度"
},
"magic": {
"_leaf": true,
"_type": "checkbox",
"_docs": "是否为魔法攻击",
"_data": "勾选以魔法攻击计算,不勾选以物理攻击计算"
},
"money": {
"_leaf": true,
"_type": "textarea",

View File

@ -262,44 +262,19 @@ var data_comment_c456ea59_6018_45ef_8bcc_211a24c627dc = {
"def": {
"_leaf": true,
"_type": "textarea",
"_data": "物理防御"
"_data": "防御"
},
"mdef": {
"_leaf": true,
"_type": "textarea",
"_data": "魔法防御"
"_data": "法强"
},
"speed": {
"_leaf": true,
"_type": "textarea",
"_data": "攻击速度"
},
"str": {
"_leaf": true,
"_type": "textarea",
"_data": "力量"
},
"agi": {
"_leaf": true,
"_type": "textarea",
"_data": "敏捷"
},
"int": {
"_leaf": true,
"_type": "textarea",
"_data": "智力"
},
"con": {
"_leaf": true,
"_type": "textarea",
"_data": "体质"
},
"magic": {
"_leaf": true,
"_type": "checkbox",
"_docs": "攻击类型",
"_data": "攻击类型是否是魔法"
"_data": "速度"
},
"money": {
"_leaf": true,
"_type": "textarea",

File diff suppressed because it is too large Load Diff

View File

@ -1101,7 +1101,8 @@ var functions_d6ad677b_427a_4623_b50f_a445a3b0ef8a =
mana: "魔力",
atk: "攻击",
def: "防御",
mdef: "护盾",
mdef: "法强",
speed: "速度",
money: "金币",
exp: "经验",
point: "加点",
@ -1166,8 +1167,6 @@ var functions_d6ad677b_427a_4623_b50f_a445a3b0ef8a =
}
},
"updateStatusBar": function () {
//更新属性映射
core.updateStatus()
// 更新状态栏
core.ui.statusBar.update();
// 更新阻激夹域的伤害值

View File

@ -146,12 +146,12 @@ var items_296f5d02_12fd_4166_a7c1_b5e830c9ee3a =
"sword1": {
"cls": "equips",
"name": "铁剑",
"text": "一把普通的铁剑",
"text": "一把普通的铁剑",
"equip": {
"type": 0,
"animate": "sword",
"value": {
"str": 10
"atk": 10
},
"percentage": {}
},
@ -230,11 +230,11 @@ var items_296f5d02_12fd_4166_a7c1_b5e830c9ee3a =
"equip": {
"type": 2,
"value": {
"str": 10,
"agi": -5
"mdef": -5,
"def": 10
},
"percentage": {
"str": 10
"def": 10
}
},
"itemEffect": "core.status.hero.def += 0",

File diff suppressed because it is too large Load Diff