侏罗纪世界:进化 2
单机游戏
贪婪洞窟末审判是一款以地牢探险为冒险。玩家需要扮演一名勇士,深入地下城寻找宝藏。中,玩家需要面对各种陷阱核,打败守卫宝藏BOSS,终获得宝藏并完成任务。
核心代码
以下是核心代码:
// 定义勇士类
var Waror = function(name, hp, atk) {
this.name = name;
this.hp = hp;
this.atk = atk;
};
// 定义地牢类
var Dungeon = function(name, boss, trease) {
this.name = name;
this.boss = boss;
this.trease = trease;
};
// 定义BOSS类
var Boss = function(name, hp, atk, skill) {
this.name = name;
this.hp = hp;
this.atk = atk;
this.skill = skill;
};
// 定义宝藏类
var Trease = function(name, gold, diamond) {
this.name = name;
this.gold = gold;
this.diamond = diamond;
};
// 定义类
var Game = function() {
// 创建地牢
var dungeon = new Dungeon('贪婪洞窟', new Boss('黑暗魔王', 200, 30, '黑暗降临'), new Trease('传说宝藏', 1000, 10));
// 创建勇士
var waror = new Waror('勇士小明', 100, 20);
// 进入地牢
this.enterDungeon = function() {
console.log(waror.name '进入了' dungeon.name);
console.log('遇到了' dungeon.boss.name ', 开始战斗');
// 战斗过程
while (waror.hp > 0