diff --git a/libs/project/data.js b/libs/project/data.js index 1bbe4e26..9ea2276b 100644 --- a/libs/project/data.js +++ b/libs/project/data.js @@ -17,8 +17,8 @@ data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d = "floorId": "sample0", // 初始楼层ID "hero": { // 勇士初始数据 "name": "阳光", // 勇士名;可以改成喜欢的 - "lv": 1, // 初始等级,该项必须为正整数 - "hp": 2000, // 初始生命值 + 'lv': 1, // 初始等级,该项必须为正整数 + "hp": 1000, // 初始生命值 "atk": 100, // 初始攻击 "def": 100, // 初始防御 "mdef": 100, // 初始魔防 @@ -92,7 +92,7 @@ data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d = "levelUp": [ // 经验升级所需要的数值,是一个数组 {}, // 第一项为初始等级,可以简单留空,也可以写name - // 每一个里面可以含有三个参数 name, need, effect + // 每一个里面可以含有三个参数 need, name, effect // need为所需要的经验数值,是一个正整数。请确保need所需的依次递增 // name为该等级的名称,也可以省略代表使用系统默认值;本项将显示在状态栏中 // effect为本次升级所执行的操作,可由若干项组成,由分号分开 @@ -137,19 +137,18 @@ data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d = "shield5": 160, // 神圣盾加防数值 "moneyPocket": 500, // 金钱袋加金币的数值 /****** 怪物相关 ******/ - "breakArmor": 0.9, // 破甲的比例(战斗前,怪物附加角色防御的x%作为伤害) - "counterAttack": 0.1, // 反击的比例(战斗时,怪物每回合附加角色攻击的x%作为伤害,无视角色防御) - "purify": 3, // 净化的比例(战斗前,怪物附加勇士魔防的x倍作为伤害) - "hatred": 2, // 仇恨属性中,每杀死一个怪物获得的仇恨值 + 'breakArmor': 0.9, // 破甲的比例(战斗前,怪物附加角色防御的x%作为伤害) + 'counterAttack': 0.1, // 反击的比例(战斗时,怪物每回合附加角色攻击的x%作为伤害,无视角色防御) + 'purify': 3, // 净化的比例(战斗前,怪物附加勇士魔防的x倍作为伤害) + 'hatred': 2, // 仇恨属性中,每杀死一个怪物获得的仇恨值 /****** 系统相关 ******/ - "animateSpeed": 500, // 动画时间 + 'animateSpeed': 500, // 动画时间 }, // 系统FLAG,在游戏运行中中请不要修改它。 "flags" : { - /****** 角色状态相关 ******/ - "enableNegativeDamage": true, // 是否支持负伤害(回血) - "enableFloor": false, // 是否在状态栏显示当前楼层 - "enableLv": true, // 是否在状态栏显示当前等级 + /****** 状态栏相关 ******/ + "enableFloor": true, // 是否在状态栏显示当前楼层 + "enableLv": false, // 是否在状态栏显示当前等级 "enableMDef": true, // 是否在状态栏及战斗界面显示魔防(护盾) "enableMoney": true, // 是否在状态栏、怪物手册及战斗界面显示金币 "enableExperience": true, // 是否在状态栏、怪物手册及战斗界面显示经验 @@ -161,6 +160,9 @@ data_a1e2fb4a_e986_4524_b0da_9b7ba7c0874d = "pickaxeFourDirections": true, // 使用破墙镐是否四个方向都破坏;如果false则只破坏面前的墙壁 "bombFourDirections": true, // 使用炸弹是否四个方向都会炸;如果false则只炸面前的怪物(即和圣锤等价) "bigKeyIsBox": false, // 如果此项为true,则视为钥匙盒,红黄蓝钥匙+1;若为false,则视为大黄门钥匙 + /****** 怪物相关 ******/ + "enableNegativeDamage": true, // 是否支持负伤害(回血) + "zoneSquare": false, // 领域类型。如果此项为true则为九宫格伤害,为false则为十字伤害 /****** 系统相关 ******/ "startDirectly": false, // 点击“开始游戏”后是否立刻开始游戏而不显示难度选择界面 "canOpenBattleAnimate": true, // 是否允许用户开启战斗过程;如果此项为false,则下面两项均强制视为false diff --git a/libs/project/enemys.js b/libs/project/enemys.js index 7952ffd1..dd9cdae5 100644 --- a/libs/project/enemys.js +++ b/libs/project/enemys.js @@ -1,63 +1,63 @@ enemys_fcae963b_31c9_42b4_b48c_bb48d09f3f80 = //1:先攻,2:魔攻,3:坚固,4:2连击,5:3连击,6:4连击,7:破甲,8:反击,9:净化,10:模仿,11:吸血,12:中毒,13:衰弱,14:诅咒,15:领域,16:夹击,17:仇恨 { - "greenSlime": {"name": "绿头怪", "hp": 100, "atk": 120, "def": 0, "money": 1, "experience": 1, "special": 0}, - "redSlime": {"name": "红头怪", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "blackSlime": {"name": "青头怪", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "slimelord": {"name": "怪王", "hp": 100, "atk": 120, "def": 0, "money": 10, "experience": 0, "special": 9}, - "bat": {"name": "小蝙蝠", "hp": 100, "atk": 120, "def": 0, "money": 2, "experience": 0, "special": 1}, - "bigBat": {"name": "大蝙蝠", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "redBat": {"name": "红蝙蝠", "hp": 100, "atk": 120, "def": 0, "money": 5, "experience": 0, "special": 4}, - "vampire": {"name": "冥灵魔王", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "skeleton": {"name": "骷髅人", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "skeletonSoilder": {"name": "骷髅士兵", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "skeletonCaptain": {"name": "骷髅队长", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "ghostSkeleton": {"name": "冥队长", "hp": 100, "atk": 120, "def": 0, "money": 8, "experience": 0, "special": 7}, - "zombie": {"name": "兽人", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "zombieKnight": {"name": "兽人武士", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "rock": {"name": "石头人", "hp": 100, "atk": 120, "def": 0, "money": 4, "experience": 0, "special": 3}, - "slimeMan": {"name": "影子战士", "hp": 100, "atk": 0, "def": 0, "money": 11, "experience": 0, "special": 10}, // 模仿怪的攻防设为0就好 - "bluePriest": {"name": "初级法师", "hp": 100, "atk": 120, "def": 0, "money": 3, "experience": 0, "special": 2}, - "redPriest": {"name": "高级法师", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "brownWizard": {"name": "初级巫师", "hp": 100, "atk": 120, "def": 0, "money": 16, "experience": 0, "special": 15, "value": 100}, // 领域怪需要加value表示领域伤害的数值 - "redWizard": {"name": "高级巫师", "hp": 1000, "atk": 1200, "def": 0, "money": 160, "experience": 0, "special": 15, "value": 200}, - "yellowGuard": {"name": "初级卫兵", "hp": 100, "atk": 120, "def": 0, "money": 10, "experience": 0, "special": 0}, - "blueGuard": {"name": "中级卫兵", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "redGuard": {"name": "高级卫兵", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "swordsman": {"name": "双手剑士", "hp": 100, "atk": 120, "def": 0, "money": 6, "experience": 0, "special": 5}, - "soldier": {"name": "冥战士", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "yellowKnight": {"name": "金骑士", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "redKnight": {"name": "红骑士", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "darkKnight": {"name": "黑骑士", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "blackKing": {"name": "黑衣魔王", "hp": 1000, "atk": 500, "def": 0, "money": 1000, "experience": 1000, "special": 0, "bomb": false}, // 加入 "bomb": false 代表该怪物不可被炸弹或圣锤炸掉 - "yellowKing": {"name": "黄衣魔王", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "greenKing": {"name": "青衣武士", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "blueKnight": {"name": "蓝骑士", "hp": 100, "atk": 120, "def": 0, "money": 9, "experience": 0, "special": 8}, - "goldSlime": {"name": "黄头怪", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "poisonSkeleton": {"name": "紫骷髅", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "poisonBat": {"name": "紫蝙蝠", "hp": 100, "atk": 120, "def": 0, "money": 14, "experience": 0, "special": 13}, - "steelRock": {"name": "铁面人", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "skeletonPriest": {"name": "骷髅法师", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "skeletonKing": {"name": "骷髅王", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "skeletonWizard": {"name": "骷髅巫师", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "redSkeletonCaption": {"name": "骷髅武士", "hp": 0, "atk": 0, "def": 0, "money": 0, "special": 0}, - "badHero": {"name": "迷失勇者", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "demon": {"name": "魔神武士", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "demonPriest": {"name": "魔神法师", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "goldHornSlime": {"name": "金角怪", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "redKing": {"name": "红衣魔王", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "whiteKing": {"name": "白衣武士", "hp": 100, "atk": 120, "def": 0, "money": 17, "experience": 0, "special": 16}, - "blackMagician": {"name": "黑暗大法师", "hp": 100, "atk": 120, "def": 0, "money": 12, "experience": 0, "special": 11, "value": 1/3, "bomb": false}, // 吸血怪需要在后面添加value代表吸血比例 - "silverSlime": {"name": "银头怪", "hp": 100, "atk": 120, "def": 0, "money": 15, "experience": 0, "special": 14}, - "swordEmperor": {"name": "剑圣", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "whiteHornSlime": {"name": "尖角怪", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "badPrincess": {"name": "痛苦魔女", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "badFairy": {"name": "黑暗仙子", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "grayPriest": {"name": "中级法师", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "redSwordsman": {"name": "剑王", "hp": 100, "atk": 120, "def": 0, "money": 7, "experience": 0, "special": 6}, - "whiteGhost": {"name": "水银战士", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "poisonZombie": {"name": "绿兽人", "hp": 100, "atk": 120, "def": 0, "money": 13, "experience": 0, "special": 12}, - "magicDragon": {"name": "魔龙", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "octopus": {"name": "血影", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "darkFairy": {"name": "仙子", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, - "greenKnight": {"name": "强盾骑士", "hp": 0, "atk": 0, "def": 0, "money": 0, "experience": 0, "special": 0}, + 'greenSlime': {'name': '绿头怪', 'hp': 100, 'atk': 120, 'def': 0, 'money': 1, 'experience': 1, 'special': [1,5,7,8]}, + 'redSlime': {'name': '红头怪', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'blackSlime': {'name': '青头怪', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'slimelord': {'name': '怪王', 'hp': 100, 'atk': 120, 'def': 0, 'money': 10, 'experience': 0, 'special': [1,9]}, + 'bat': {'name': '小蝙蝠', 'hp': 100, 'atk': 120, 'def': 0, 'money': 2, 'experience': 0, 'special': 1}, + 'bigBat': {'name': '大蝙蝠', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'redBat': {'name': '红蝙蝠', 'hp': 100, 'atk': 120, 'def': 0, 'money': 5, 'experience': 0, 'special': 4}, + 'vampire': {'name': '冥灵魔王', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'skeleton': {'name': '骷髅人', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'skeletonSoilder': {'name': '骷髅士兵', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'skeletonCaptain': {'name': '骷髅队长', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'ghostSkeleton': {'name': '冥队长', 'hp': 100, 'atk': 120, 'def': 0, 'money': 8, 'experience': 0, 'special': 7}, + 'zombie': {'name': '兽人', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'zombieKnight': {'name': '兽人武士', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'rock': {'name': '石头人', 'hp': 100, 'atk': 120, 'def': 0, 'money': 4, 'experience': 0, 'special': 3}, + 'slimeMan': {'name': '影子战士', 'hp': 100, 'atk': 0, 'def': 0, 'money': 11, 'experience': 0, 'special': 10}, // 模仿怪的攻防设为0就好 + 'bluePriest': {'name': '初级法师', 'hp': 100, 'atk': 120, 'def': 0, 'money': 3, 'experience': 0, 'special': 2}, + 'redPriest': {'name': '高级法师', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'brownWizard': {'name': '初级巫师', 'hp': 100, 'atk': 120, 'def': 0, 'money': 16, 'experience': 0, 'special': 15, 'value': 100, 'zoneSquare': true}, // 领域怪需要加value表示领域伤害的数值;zoneSquare代表是否九宫格伤害 + 'redWizard': {'name': '高级巫师', 'hp': 1000, 'atk': 1200, 'def': 0, 'money': 160, 'experience': 0, 'special': 15, 'value': 200, 'range': 2}, // range可选,代表领域伤害的范围;不加默认为1 + 'yellowGuard': {'name': '初级卫兵', 'hp': 100, 'atk': 120, 'def': 0, 'money': 10, 'experience': 0, 'special': 0}, + 'blueGuard': {'name': '中级卫兵', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'redGuard': {'name': '高级卫兵', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'swordsman': {'name': '双手剑士', 'hp': 100, 'atk': 120, 'def': 0, 'money': 6, 'experience': 0, 'special': 5}, + 'soldier': {'name': '冥战士', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'yellowKnight': {'name': '金骑士', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'redKnight': {'name': '红骑士', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'darkKnight': {'name': '黑骑士', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'blackKing': {'name': '黑衣魔王', 'hp': 1000, 'atk': 500, 'def': 0, 'money': 1000, 'experience': 1000, 'special': 0, 'bomb': false}, // 加入 'bomb': false 代表该怪物不可被炸弹或圣锤炸掉 + 'yellowKing': {'name': '黄衣魔王', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'greenKing': {'name': '青衣武士', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'blueKnight': {'name': '蓝骑士', 'hp': 100, 'atk': 120, 'def': 0, 'money': 9, 'experience': 0, 'special': 8}, + 'goldSlime': {'name': '黄头怪', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'poisonSkeleton': {'name': '紫骷髅', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'poisonBat': {'name': '紫蝙蝠', 'hp': 100, 'atk': 120, 'def': 0, 'money': 14, 'experience': 0, 'special': 13}, + 'steelRock': {'name': '铁面人', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'skeletonPriest': {'name': '骷髅法师', 'hp': 100, 'atk': 100, 'def': 0, 'money': 0, 'experience': 0, 'special': 18, 'value': 20}, + 'skeletonKing': {'name': '骷髅王', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'skeletonWizard': {'name': '骷髅巫师', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'redSkeletonCaption': {'name': '骷髅武士', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'special': 0}, + 'badHero': {'name': '迷失勇者', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'demon': {'name': '魔神武士', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'demonPriest': {'name': '魔神法师', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'goldHornSlime': {'name': '金角怪', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'redKing': {'name': '红衣魔王', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'whiteKing': {'name': '白衣武士', 'hp': 100, 'atk': 120, 'def': 0, 'money': 17, 'experience': 0, 'special': 16}, + 'blackMagician': {'name': '黑暗大法师', 'hp': 100, 'atk': 120, 'def': 0, 'money': 12, 'experience': 0, 'special': 11, 'value': 1/3, 'bomb': false}, // 吸血怪需要在后面添加value代表吸血比例 + 'silverSlime': {'name': '银头怪', 'hp': 100, 'atk': 120, 'def': 0, 'money': 15, 'experience': 0, 'special': 14}, + 'swordEmperor': {'name': '剑圣', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'whiteHornSlime': {'name': '尖角怪', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'badPrincess': {'name': '痛苦魔女', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'badFairy': {'name': '黑暗仙子', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'grayPriest': {'name': '中级法师', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'redSwordsman': {'name': '剑王', 'hp': 100, 'atk': 120, 'def': 0, 'money': 7, 'experience': 0, 'special': 6, 'n': 8}, // 多连击需要在后面指定n代表是几连击 + 'whiteGhost': {'name': '水银战士', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'poisonZombie': {'name': '绿兽人', 'hp': 100, 'atk': 120, 'def': 0, 'money': 13, 'experience': 0, 'special': 12}, + 'magicDragon': {'name': '魔龙', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'octopus': {'name': '血影', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'darkFairy': {'name': '仙子', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, + 'greenKnight': {'name': '强盾骑士', 'hp': 0, 'atk': 0, 'def': 0, 'money': 0, 'experience': 0, 'special': 0}, } \ No newline at end of file diff --git a/libs/project/items.js b/libs/project/items.js index a181532d..c42662bd 100644 --- a/libs/project/items.js +++ b/libs/project/items.js @@ -34,7 +34,7 @@ items_296f5d02_12fd_4166_a7c1_b5e830c9ee3a = 'fly': {'cls': 'constants', 'name': '楼层传送器', 'text': '可以自由往来去过的楼层'}, 'coin': {'cls': 'constants', 'name': '幸运金币', 'text': '持有时打败怪物可得双倍金币'}, 'snow': {'cls': 'constants', 'name': '冰冻徽章', 'text': '可以将四周的熔岩变成平地'}, - 'cross': {'cls': 'constants', 'name': '十字架', 'text': '该道具尚未被定义'}, + 'cross': {'cls': 'constants', 'name': '十字架', 'text': '持有后无视怪物的无敌属性'}, 'knife': {'cls': 'constants', 'name': '屠龙匕首', 'text': '该道具尚未被定义'}, 'shoes': {'cls': 'constants', 'name': '绿鞋', 'text': '持有时无视负面地形'}, diff --git a/libs/project/maps.js b/libs/project/maps.js index 30ef090a..0865925e 100644 --- a/libs/project/maps.js +++ b/libs/project/maps.js @@ -3,191 +3,190 @@ maps_90f36752_8815_4be8_b32b_d7fad1d0542e = ////////////////////////// 地形部分 ////////////////////////// // 0-20 地形 - "1":{"cls": "terrains", "id": "yellowWall"}, // 黄墙 - "2":{"cls": "terrains", "id": "whiteWall"}, // 白墙 - "3":{"cls": "terrains", "id": "blueWall"}, // 白墙 - "4":{"cls": "animates", "id": "star", "noPass": true}, // 星空 - "5":{"cls": "animates", "id": "lava", "noPass": true}, // 岩浆 - "6":{"cls": "terrains", "id": "ice"}, // 岩浆 - "7":{"cls": "terrains", "id": "blueShop-left"}, // 蓝色商店左 - "8":{"cls": "terrains", "id": "blueShop-right"}, // 蓝色商店右 - "9":{"cls": "terrains", "id": "pinkShop-left"}, // 粉色商店左 - "10":{"cls": "terrains", "id": "pinkShop-right"}, // 粉色商店左 - "11":{"cls": "animates", "id": "lavaNet", "noPass": false, "trigger": "passNet"}, // 血网 - "12":{"cls": "animates", "id": "poisonNet", "noPass": false, "trigger": "passNet"}, // 毒网 - "13":{"cls": "animates", "id": "weakNet", "noPass": false, "trigger": "passNet"}, // 衰网 - "14":{"cls": "animates", "id": "curseNet", "noPass": false, "trigger": "passNet"}, // 咒网 - "15":{"cls": "animates", "id": "water", "noPass": true}, // 水 + '1':{'cls': 'terrains', 'id': 'yellowWall'}, // 黄墙 + '2':{'cls': 'terrains', 'id': 'whiteWall'}, // 白墙 + '3':{'cls': 'terrains', 'id': 'blueWall'}, // 白墙 + '4':{'cls': 'animates', 'id': 'star', 'noPass': true}, // 星空 + '5':{'cls': 'animates', 'id': 'lava', 'noPass': true}, // 岩浆 + '6':{'cls': 'terrains', 'id': 'ice'}, // 岩浆 + '7':{'cls': 'terrains', 'id': 'blueShop-left'}, // 蓝色商店左 + '8':{'cls': 'terrains', 'id': 'blueShop-right'}, // 蓝色商店右 + '9':{'cls': 'terrains', 'id': 'pinkShop-left'}, // 粉色商店左 + '10':{'cls': 'terrains', 'id': 'pinkShop-right'}, // 粉色商店左 + '11':{'cls': 'animates', 'id': 'lavaNet', 'noPass': false, 'trigger': 'passNet'}, // 血网 + '12':{'cls': 'animates', 'id': 'poisonNet', 'noPass': false, 'trigger': 'passNet'}, // 毒网 + '13':{'cls': 'animates', 'id': 'weakNet', 'noPass': false, 'trigger': 'passNet'}, // 衰网 + '14':{'cls': 'animates', 'id': 'curseNet', 'noPass': false, 'trigger': 'passNet'}, // 咒网 + '15':{'cls': 'animates', 'id': 'water', 'noPass': true}, // 水 // 在这里添加更多地形 - // 如果空地不足,可以从180以后开始继续放,只要不和现有的数字冲突即可 + // 如果空位不足,可以从180以后开始继续放,只要不和现有的数字冲突即可 // Autotile - "20":{"cls": "autotile", "id": "autotile", "noPass": true}, // autotile - // 更多的autotile从151到160,只要不和现有的数字冲突即可 - "151":{"cls": "autotile", "id": "autotile1", "noPass": true}, - "152":{"cls": "autotile", "id": "autotile2", "noPass": true}, - "153":{"cls": "autotile", "id": "autotile3", "noPass": true}, - + '20':{'cls': 'autotile', 'id': 'autotile', 'noPass': true}, // autotile + // 更多的autotile从151到160等,只要不和现有的数字冲突即可 + '151':{'cls': 'autotile', 'id': 'autotile1', 'noPass': true}, + '152':{'cls': 'autotile', 'id': 'autotile2', 'noPass': true}, + '153':{'cls': 'autotile', 'id': 'autotile3', 'noPass': true}, ////////////////////////// 物品部分 ////////////////////////// // 21-80 物品 - "21":{"cls": "items", "id": "yellowKey"}, // 黄钥匙 - "22":{"cls": "items", "id": "blueKey"}, // 蓝钥匙 - "23":{"cls": "items", "id": "redKey"}, // 红钥匙 - "24":{"cls": "items", "id": "greenKey"}, // 绿钥匙 - "25":{"cls": "items", "id": "steelKey"}, // 铁门钥匙 - "26":{"cls": "items", "id": "bigKey"}, // 大黄门钥匙(钥匙盒) - "27":{"cls": "items", "id": "redJewel"}, // 红宝石 - "28":{"cls": "items", "id": "blueJewel"}, // 蓝宝石 - "29":{"cls": "items", "id": "greenJewel"}, // 绿宝石 - "30":{"cls": "items", "id": "yellowJewel"}, // 黄宝石 - "31":{"cls": "items", "id": "redPotion"}, // 红血瓶 - "32":{"cls": "items", "id": "bluePotion"}, // 蓝血瓶 - "33":{"cls": "items", "id": "greenPotion"}, // 绿血瓶 - "34":{"cls": "items", "id": "yellowPotion"}, // 黄血瓶 - "35":{"cls": "items", "id": "sword1"}, // 铁剑 - "36":{"cls": "items", "id": "shield1"}, // 铁盾 - "37":{"cls": "items", "id": "sword2"}, // 银剑 - "38":{"cls": "items", "id": "shield2"}, // 银盾 - "39":{"cls": "items", "id": "sword3"}, // 骑士剑 - "40":{"cls": "items", "id": "shield3"}, // 骑士盾 - "41":{"cls": "items", "id": "sword4"}, // 圣剑 - "42":{"cls": "items", "id": "shield4"}, // 圣盾 - "43":{"cls": "items", "id": "sword5"}, // 神圣剑 - "44":{"cls": "items", "id": "shield5"}, // 神圣盾 - "45":{"cls": "items", "id": "book"}, // 怪物手册 - "46":{"cls": "items", "id": "fly"}, // 楼层传送器 - "47":{"cls": "items", "id": "pickaxe"}, // 破墙镐 - "48":{"cls": "items", "id": "icePickaxe"}, // 破冰镐 - "49":{"cls": "items", "id": "bomb"}, // 炸弹 - "50":{"cls": "items", "id": "centerFly"}, // 中心对称 - "51":{"cls": "items", "id": "upFly"}, // 上楼器 - "52":{"cls": "items", "id": "downFly"}, // 下楼器 - "53":{"cls": "items", "id": "coin"}, // 幸运金币 - "54":{"cls": "items", "id": "snow"}, // 冰冻徽章 - "55":{"cls": "items", "id": "cross"}, // 十字架 - "56":{"cls": "items", "id": "superPotion"}, // 圣水 - "57":{"cls": "items", "id": "earthquake"}, // 地震卷轴 - "58":{"cls": "items", "id": "poisonWine"}, // 解毒药水 - "59":{"cls": "items", "id": "weakWine"}, // 解衰药水 - "60":{"cls": "items", "id": "curseWine"}, // 解咒药水 - "61":{"cls": "items", "id": "superWine"}, // 万能药水 - "62":{"cls": "items", "id": "knife"}, // 屠龙匕首 - "63":{"cls": "items", "id": "moneyPocket"}, // 金钱袋 - "64":{"cls": "items", "id": "shoes"}, // 绿鞋 - "65":{"cls": "items", "id": "hammer"}, // 圣锤 + '21':{'cls': 'items', 'id': 'yellowKey'}, // 黄钥匙 + '22':{'cls': 'items', 'id': 'blueKey'}, // 蓝钥匙 + '23':{'cls': 'items', 'id': 'redKey'}, // 红钥匙 + '24':{'cls': 'items', 'id': 'greenKey'}, // 绿钥匙 + '25':{'cls': 'items', 'id': 'steelKey'}, // 铁门钥匙 + '26':{'cls': 'items', 'id': 'bigKey'}, // 大黄门钥匙(钥匙盒) + '27':{'cls': 'items', 'id': 'redJewel'}, // 红宝石 + '28':{'cls': 'items', 'id': 'blueJewel'}, // 蓝宝石 + '29':{'cls': 'items', 'id': 'greenJewel'}, // 绿宝石 + '30':{'cls': 'items', 'id': 'yellowJewel'}, // 黄宝石 + '31':{'cls': 'items', 'id': 'redPotion'}, // 红血瓶 + '32':{'cls': 'items', 'id': 'bluePotion'}, // 蓝血瓶 + '33':{'cls': 'items', 'id': 'greenPotion'}, // 绿血瓶 + '34':{'cls': 'items', 'id': 'yellowPotion'}, // 黄血瓶 + '35':{'cls': 'items', 'id': 'sword1'}, // 铁剑 + '36':{'cls': 'items', 'id': 'shield1'}, // 铁盾 + '37':{'cls': 'items', 'id': 'sword2'}, // 银剑 + '38':{'cls': 'items', 'id': 'shield2'}, // 银盾 + '39':{'cls': 'items', 'id': 'sword3'}, // 骑士剑 + '40':{'cls': 'items', 'id': 'shield3'}, // 骑士盾 + '41':{'cls': 'items', 'id': 'sword4'}, // 圣剑 + '42':{'cls': 'items', 'id': 'shield4'}, // 圣盾 + '43':{'cls': 'items', 'id': 'sword5'}, // 神圣剑 + '44':{'cls': 'items', 'id': 'shield5'}, // 神圣盾 + '45':{'cls': 'items', 'id': 'book'}, // 怪物手册 + '46':{'cls': 'items', 'id': 'fly'}, // 楼层传送器 + '47':{'cls': 'items', 'id': 'pickaxe'}, // 破墙镐 + '48':{'cls': 'items', 'id': 'icePickaxe'}, // 破冰镐 + '49':{'cls': 'items', 'id': 'bomb'}, // 炸弹 + '50':{'cls': 'items', 'id': 'centerFly'}, // 中心对称 + '51':{'cls': 'items', 'id': 'upFly'}, // 上楼器 + '52':{'cls': 'items', 'id': 'downFly'}, // 下楼器 + '53':{'cls': 'items', 'id': 'coin'}, // 幸运金币 + '54':{'cls': 'items', 'id': 'snow'}, // 冰冻徽章 + '55':{'cls': 'items', 'id': 'cross'}, // 十字架 + '56':{'cls': 'items', 'id': 'superPotion'}, // 圣水 + '57':{'cls': 'items', 'id': 'earthquake'}, // 地震卷轴 + '58':{'cls': 'items', 'id': 'poisonWine'}, // 解毒药水 + '59':{'cls': 'items', 'id': 'weakWine'}, // 解衰药水 + '60':{'cls': 'items', 'id': 'curseWine'}, // 解咒药水 + '61':{'cls': 'items', 'id': 'superWine'}, // 万能药水 + '62':{'cls': 'items', 'id': 'knife'}, // 屠龙匕首 + '63':{'cls': 'items', 'id': 'moneyPocket'}, // 金钱袋 + '64':{'cls': 'items', 'id': 'shoes'}, // 绿鞋 + '65':{'cls': 'items', 'id': 'hammer'}, // 圣锤 ////////////////////////// 门、楼梯、传送点部分 ////////////////////////// // 81-100 门 - "81":{"cls": "terrains", "id": "yellowDoor", "trigger": "openDoor"}, // 黄门 - "82":{"cls": "terrains", "id": "blueDoor", "trigger": "openDoor"}, // 蓝门 - "83":{"cls": "terrains", "id": "redDoor", "trigger": "openDoor"}, // 红门 - "84":{"cls": "terrains", "id": "greenDoor", "trigger": "openDoor"}, // 绿门 - "85":{"cls": "terrains", "id": "specialDoor", "trigger": "openDoor"}, // 机关门左 - "86":{"cls": "terrains", "id": "steelDoor", "trigger": "openDoor"}, // 铁门 - "87":{"cls": "terrains", "id": "upFloor", "noPass": false}, // 上楼梯 - "88":{"cls": "terrains", "id": "downFloor", "noPass": false}, // 下楼梯 - "89":{"cls": "animates", "id": "portal", "noPass": false}, // 传送门 - "90":{"cls": "animates", "id": "starPortal", "noPass": false}, // 星空传送门 - "91":{"cls": "animates", "id": "upPortal", "noPass": false}, // 上箭头 - "92":{"cls": "animates", "id": "leftPortal", "noPass": false}, // 左箭头 - "93":{"cls": "animates", "id": "downPortal", "noPass": false}, // 下箭头 - "94":{"cls": "animates", "id": "rightPortal", "noPass": false}, // 右箭头 + '81':{'cls': 'terrains', 'id': 'yellowDoor', 'trigger': 'openDoor'}, // 黄门 + '82':{'cls': 'terrains', 'id': 'blueDoor', 'trigger': 'openDoor'}, // 蓝门 + '83':{'cls': 'terrains', 'id': 'redDoor', 'trigger': 'openDoor'}, // 红门 + '84':{'cls': 'terrains', 'id': 'greenDoor', 'trigger': 'openDoor'}, // 绿门 + '85':{'cls': 'terrains', 'id': 'specialDoor', 'trigger': 'openDoor'}, // 机关门左 + '86':{'cls': 'terrains', 'id': 'steelDoor', 'trigger': 'openDoor'}, // 铁门 + '87':{'cls': 'terrains', 'id': 'upFloor', 'noPass': false}, // 上楼梯 + '88':{'cls': 'terrains', 'id': 'downFloor', 'noPass': false}, // 下楼梯 + '89':{'cls': 'animates', 'id': 'portal', 'noPass': false}, // 传送门 + '90':{'cls': 'animates', 'id': 'starPortal', 'noPass': false}, // 星空传送门 + '91':{'cls': 'animates', 'id': 'upPortal', 'noPass': false}, // 上箭头 + '92':{'cls': 'animates', 'id': 'leftPortal', 'noPass': false}, // 左箭头 + '93':{'cls': 'animates', 'id': 'downPortal', 'noPass': false}, // 下箭头 + '94':{'cls': 'animates', 'id': 'rightPortal', 'noPass': false}, // 右箭头 ////////////////////////// NPC部分 ////////////////////////// // 121-150 NPC - "121":{"cls": "npcs", "id": "man"}, - "122":{"cls": "npcs", "id": "woman"}, - "123":{"cls": "npcs", "id": "thief"}, - "124":{"cls": "npcs", "id": "fairy"}, - "125":{"cls": "npcs", "id": "magician"}, - "126":{"cls": "npcs", "id": "womanMagician"}, - "127":{"cls": "npcs", "id": "oldMan"}, - "128":{"cls": "npcs", "id": "child"}, - "129":{"cls": "npcs", "id": "wood"}, - "130":{"cls": "npcs", "id": "pinkShop"}, - "131":{"cls": "npcs", "id": "blueShop"}, - "132":{"cls": "npcs", "id": "princess"}, + '121':{'cls': 'npcs', 'id': 'man'}, + '122':{'cls': 'npcs', 'id': 'woman'}, + '123':{'cls': 'npcs', 'id': 'thief'}, + '124':{'cls': 'npcs', 'id': 'fairy'}, + '125':{'cls': 'npcs', 'id': 'magician'}, + '126':{'cls': 'npcs', 'id': 'womanMagician'}, + '127':{'cls': 'npcs', 'id': 'oldMan'}, + '128':{'cls': 'npcs', 'id': 'child'}, + '129':{'cls': 'npcs', 'id': 'wood'}, + '130':{'cls': 'npcs', 'id': 'pinkShop'}, + '131':{'cls': 'npcs', 'id': 'blueShop'}, + '132':{'cls': 'npcs', 'id': 'princess'}, ////////////////////////// 其他部分 ////////////////////////// // 161-200 其他(单向箭头、灯、箱子等等) - "161":{"cls": "terrains", "id": "arrowUp", "noPass": false}, // 单向上箭头 - "162":{"cls": "terrains", "id": "arrowDown", "noPass": false}, // 单向下箭头 - "163":{"cls": "terrains", "id": "arrowLeft", "noPass": false}, // 单向左箭头 - "164":{"cls": "terrains", "id": "arrowRight", "noPass": false}, // 单向右箭头 - "165":{"cls": "terrains", "id": "light", "trigger": "changeLight", "noPass": false}, // 灯 - "166":{"cls": "terrains", "id": "darkLight", "noPass": true}, // 暗灯 + '161':{'cls': 'terrains', 'id': 'arrowUp', 'noPass': false}, // 单向上箭头 + '162':{'cls': 'terrains', 'id': 'arrowDown', 'noPass': false}, // 单向下箭头 + '163':{'cls': 'terrains', 'id': 'arrowLeft', 'noPass': false}, // 单向左箭头 + '164':{'cls': 'terrains', 'id': 'arrowRight', 'noPass': false}, // 单向右箭头 + '165':{'cls': 'terrains', 'id': 'light', 'trigger': 'changeLight', 'noPass': false}, // 灯 + '166':{'cls': 'terrains', 'id': 'darkLight', 'noPass': true}, // 暗灯 ////////////////////////// 怪物部分 ////////////////////////// // 201-300 怪物 - "201":{"cls": "enemys", "id": "greenSlime"}, - "202":{"cls": "enemys", "id": "redSlime"}, - "203":{"cls": "enemys", "id": "blackSlime"}, - "204":{"cls": "enemys", "id": "slimelord"}, - "205":{"cls": "enemys", "id": "bat"}, - "206":{"cls": "enemys", "id": "bigBat"}, - "207":{"cls": "enemys", "id": "redBat"}, - "208":{"cls": "enemys", "id": "vampire"}, - "209":{"cls": "enemys", "id": "skeleton"}, - "210":{"cls": "enemys", "id": "skeletonSoilder"}, - "211":{"cls": "enemys", "id": "skeletonCaptain"}, - "212":{"cls": "enemys", "id": "ghostSkeleton"}, - "213":{"cls": "enemys", "id": "zombie"}, - "214":{"cls": "enemys", "id": "zombieKnight"}, - "215":{"cls": "enemys", "id": "rock"}, - "216":{"cls": "enemys", "id": "slimeMan"}, - "217":{"cls": "enemys", "id": "bluePriest"}, - "218":{"cls": "enemys", "id": "redPriest"}, - "219":{"cls": "enemys", "id": "brownWizard"}, - "220":{"cls": "enemys", "id": "redWizard"}, - "221":{"cls": "enemys", "id": "yellowGuard"}, - "222":{"cls": "enemys", "id": "blueGuard"}, - "223":{"cls": "enemys", "id": "redGuard"}, - "224":{"cls": "enemys", "id": "swordsman"}, - "225":{"cls": "enemys", "id": "soldier"}, - "226":{"cls": "enemys", "id": "yellowKnight"}, - "227":{"cls": "enemys", "id": "redKnight"}, - "228":{"cls": "enemys", "id": "darkKnight"}, - "229":{"cls": "enemys", "id": "blackKing"}, - "230":{"cls": "enemys", "id": "yellowKing"}, - "231":{"cls": "enemys", "id": "greenKing"}, - "232":{"cls": "enemys", "id": "blueKnight"}, - "233":{"cls": "enemys", "id": "goldSlime"}, - "234":{"cls": "enemys", "id": "poisonSkeleton"}, - "235":{"cls": "enemys", "id": "poisonBat"}, - "236":{"cls": "enemys", "id": "steelRock"}, - "237":{"cls": "enemys", "id": "skeletonPriest"}, - "238":{"cls": "enemys", "id": "skeletonKing"}, - "239":{"cls": "enemys", "id": "skeletonWizard"}, - "240":{"cls": "enemys", "id": "redSkeletonCaption"}, - "241":{"cls": "enemys", "id": "badHero"}, - "242":{"cls": "enemys", "id": "demon"}, - "243":{"cls": "enemys", "id": "demonPriest"}, - "244":{"cls": "enemys", "id": "goldHornSlime"}, - "245":{"cls": "enemys", "id": "redKing"}, - "246":{"cls": "enemys", "id": "whiteKing"}, - "247":{"cls": "enemys", "id": "blackMagician"}, - "248":{"cls": "enemys", "id": "silverSlime"}, - "249":{"cls": "enemys", "id": "swordEmperor"}, - "250":{"cls": "enemys", "id": "whiteHornSlime"}, - "251":{"cls": "enemys", "id": "badPrincess"}, - "252":{"cls": "enemys", "id": "badFairy"}, - "253":{"cls": "enemys", "id": "grayPriest"}, - "254":{"cls": "enemys", "id": "redSwordsman"}, - "255":{"cls": "enemys", "id": "whiteGhost"}, - "256":{"cls": "enemys", "id": "poisonZombie"}, - "257":{"cls": "enemys", "id": "magicDragon"}, - "258":{"cls": "enemys", "id": "octopus"}, - "259":{"cls": "enemys", "id": "darkFairy"}, - "260":{"cls": "enemys", "id": "greenKnight"}, + '201':{'cls': 'enemys', 'id': 'greenSlime'}, + '202':{'cls': 'enemys', 'id': 'redSlime'}, + '203':{'cls': 'enemys', 'id': 'blackSlime'}, + '204':{'cls': 'enemys', 'id': 'slimelord'}, + '205':{'cls': 'enemys', 'id': 'bat'}, + '206':{'cls': 'enemys', 'id': 'bigBat'}, + '207':{'cls': 'enemys', 'id': 'redBat'}, + '208':{'cls': 'enemys', 'id': 'vampire'}, + '209':{'cls': 'enemys', 'id': 'skeleton'}, + '210':{'cls': 'enemys', 'id': 'skeletonSoilder'}, + '211':{'cls': 'enemys', 'id': 'skeletonCaptain'}, + '212':{'cls': 'enemys', 'id': 'ghostSkeleton'}, + '213':{'cls': 'enemys', 'id': 'zombie'}, + '214':{'cls': 'enemys', 'id': 'zombieKnight'}, + '215':{'cls': 'enemys', 'id': 'rock'}, + '216':{'cls': 'enemys', 'id': 'slimeMan'}, + '217':{'cls': 'enemys', 'id': 'bluePriest'}, + '218':{'cls': 'enemys', 'id': 'redPriest'}, + '219':{'cls': 'enemys', 'id': 'brownWizard'}, + '220':{'cls': 'enemys', 'id': 'redWizard'}, + '221':{'cls': 'enemys', 'id': 'yellowGuard'}, + '222':{'cls': 'enemys', 'id': 'blueGuard'}, + '223':{'cls': 'enemys', 'id': 'redGuard'}, + '224':{'cls': 'enemys', 'id': 'swordsman'}, + '225':{'cls': 'enemys', 'id': 'soldier'}, + '226':{'cls': 'enemys', 'id': 'yellowKnight'}, + '227':{'cls': 'enemys', 'id': 'redKnight'}, + '228':{'cls': 'enemys', 'id': 'darkKnight'}, + '229':{'cls': 'enemys', 'id': 'blackKing'}, + '230':{'cls': 'enemys', 'id': 'yellowKing'}, + '231':{'cls': 'enemys', 'id': 'greenKing'}, + '232':{'cls': 'enemys', 'id': 'blueKnight'}, + '233':{'cls': 'enemys', 'id': 'goldSlime'}, + '234':{'cls': 'enemys', 'id': 'poisonSkeleton'}, + '235':{'cls': 'enemys', 'id': 'poisonBat'}, + '236':{'cls': 'enemys', 'id': 'steelRock'}, + '237':{'cls': 'enemys', 'id': 'skeletonPriest'}, + '238':{'cls': 'enemys', 'id': 'skeletonKing'}, + '239':{'cls': 'enemys', 'id': 'skeletonWizard'}, + '240':{'cls': 'enemys', 'id': 'redSkeletonCaption'}, + '241':{'cls': 'enemys', 'id': 'badHero'}, + '242':{'cls': 'enemys', 'id': 'demon'}, + '243':{'cls': 'enemys', 'id': 'demonPriest'}, + '244':{'cls': 'enemys', 'id': 'goldHornSlime'}, + '245':{'cls': 'enemys', 'id': 'redKing'}, + '246':{'cls': 'enemys', 'id': 'whiteKing'}, + '247':{'cls': 'enemys', 'id': 'blackMagician'}, + '248':{'cls': 'enemys', 'id': 'silverSlime'}, + '249':{'cls': 'enemys', 'id': 'swordEmperor'}, + '250':{'cls': 'enemys', 'id': 'whiteHornSlime'}, + '251':{'cls': 'enemys', 'id': 'badPrincess'}, + '252':{'cls': 'enemys', 'id': 'badFairy'}, + '253':{'cls': 'enemys', 'id': 'grayPriest'}, + '254':{'cls': 'enemys', 'id': 'redSwordsman'}, + '255':{'cls': 'enemys', 'id': 'whiteGhost'}, + '256':{'cls': 'enemys', 'id': 'poisonZombie'}, + '257':{'cls': 'enemys', 'id': 'magicDragon'}, + '258':{'cls': 'enemys', 'id': 'octopus'}, + '259':{'cls': 'enemys', 'id': 'darkFairy'}, + '260':{'cls': 'enemys', 'id': 'greenKnight'}, ////////////////////////// 待定... ////////////////////////// // 目前ID暂时不要超过400