feat(invite-friends): add basilist quest

This commit is contained in:
Tyler Renelle 2014-11-12 19:23:43 -07:00
parent dcfa0817f6
commit 9bb40d6a96
9 changed files with 294 additions and 253 deletions

File diff suppressed because one or more lines are too long

View file

@ -13355,6 +13355,22 @@ api.quests = {
gp: 900,
exp: 1500
}
},
basilist: {
text: t('questBasilistText'),
notes: t('questBasilistNotes'),
completion: t('questBasilistCompletion'),
canbuy: false,
value: 4,
boss: {
name: t('questBasilistBoss'),
hp: 100,
str: 0.5
},
drop: {
gp: 8,
exp: 42
}
}
};

16
dist/spritesmith2.css vendored
View file

@ -12,13 +12,13 @@
}
.skin_skeleton2_sleep {
background-image: url(spritesmith2.png);
background-position: -637px -1052px;
background-position: -728px -1052px;
width: 90px;
height: 90px;
}
.customize-option.skin_skeleton2_sleep {
background-image: url(spritesmith2.png);
background-position: -662px -1067px;
background-position: -753px -1067px;
width: 60px;
height: 60px;
}
@ -138,7 +138,7 @@
}
.broad_armor_rogue_1 {
background-image: url(spritesmith2.png);
background-position: -728px -1052px;
background-position: -637px -1052px;
width: 90px;
height: 90px;
}
@ -906,13 +906,13 @@
}
.broad_armor_mystery_201406 {
background-image: url(spritesmith2.png);
background-position: -364px -106px;
background-position: -364px -203px;
width: 90px;
height: 96px;
}
.head_mystery_201406 {
background-image: url(spritesmith2.png);
background-position: -364px -203px;
background-position: -364px -106px;
width: 90px;
height: 96px;
}
@ -1762,3 +1762,9 @@
width: 40px;
height: 40px;
}
.shop_weapon_special_candycane {
background-image: url(spritesmith2.png);
background-position: -902px -1275px;
width: 40px;
height: 40px;
}

BIN
dist/spritesmith2.png vendored

Binary file not shown.

Before

Width:  |  Height:  |  Size: 111 KiB

After

Width:  |  Height:  |  Size: 111 KiB

494
dist/spritesmith3.css vendored

File diff suppressed because it is too large Load diff

BIN
dist/spritesmith3.png vendored

Binary file not shown.

Before

Width:  |  Height:  |  Size: 254 KiB

After

Width:  |  Height:  |  Size: 258 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

View file

@ -113,6 +113,11 @@
"questGoldenknight3DropGoldenPotion": "Golden Hatching Potion",
"questGoldenknight3DropWeapon": "Mustaine's Milestone Mashing Morning Star (Off-hand Weapon)",
"questBasilistText": "The Basi-List",
"questBasilistNotes": "There's a commotion in the marketplace--the kind that should make you run away. Being a courageous adventurer, you run towards it instead, and discover a Basi-list, coalescing from a clump of incomplete To-Dos! Nearby Habiticans are paralyzed with fear at the length of the Basi-list, unable to start working. From somewhere in the vicinity, you hear @Arcosine shout: \"Quick! Complete your To-Dos and Dailies to defang the monster, before someone gets a paper cut!\" Strike fast, adventurer, and check something off - but beware! If you leave any Dailies undone, the Basi-list will attack you and your party!",
"questBasilistCompletion": "The Basi-list has scattered into paper scraps, which shimmer gently in rainbow colors. \"Whew!\" says @Arcosine. \"Good thing you guys were here!\" Feeling more experienced than before, you gather up some fallen gold from among the papers.",
"questBasilistBoss": "The Basi-List",
"questEggHuntText": "Egg Hunt",
"questEggHuntNotes": "Overnight, strange plain eggs have appeared everywhere: in Matt's stables, behind the counter at the Tavern, and even among the pet eggs at the Marketplace! What a nuisance! \"Nobody knows where they came from, or what they might hatch into,\" says <strong>Megan</strong>, \"but we can't just leave them laying around! Work hard and search hard to help me gather up these mysterious eggs. Maybe if you collect enough, there will be some extras left over for you...\"",
"questEggHuntCompletion": "You did it! In gratitude, <strong>Megan</strong> gives you ten of the eggs. \"I don't think they hatch, exactly,\" she says, \"and they certainly won't grow into mounts. But that doesn't mean you can't dye them beautiful colors!\"",

View file

@ -1249,6 +1249,20 @@ api.quests =
gp: 900
exp: 1500
basilist:
text: t('questBasilistText')
notes: t('questBasilistNotes')
completion: t('questBasilistCompletion')
canbuy: false
value: 4
boss:
name: t('questBasilistBoss')
hp: 100
str: 0.5
drop:
gp: 8
exp: 42
_.each api.quests, (v,key) ->
_.defaults v, {key,canBuy:true}
b = v.boss