mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-03 12:40:00 +00:00
feat(mystery): april mystery items
This commit is contained in:
parent
8b26a92b7f
commit
db95376b52
10 changed files with 1694 additions and 1620 deletions
1642
dist/customizer.css
vendored
1642
dist/customizer.css
vendored
File diff suppressed because it is too large
Load diff
2
dist/habitrpg-shared.css
vendored
2
dist/habitrpg-shared.css
vendored
File diff suppressed because one or more lines are too long
24
dist/habitrpg-shared.js
vendored
24
dist/habitrpg-shared.js
vendored
|
|
@ -9212,6 +9212,10 @@ var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ?
|
|||
start: '2014-03-24',
|
||||
end: '2014-04-01'
|
||||
},
|
||||
201404: {
|
||||
start: '2014-04-24',
|
||||
end: '2014-05-01'
|
||||
},
|
||||
wondercon: {
|
||||
start: '2014-03-24',
|
||||
end: '2014-04-01'
|
||||
|
|
@ -10282,6 +10286,12 @@ var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ?
|
|||
notes: "These shining wings have feathers that glitter in the sun!",
|
||||
mystery: mystery['201402'],
|
||||
value: 10
|
||||
},
|
||||
201404: {
|
||||
text: 'Twilight Butterfly Wings',
|
||||
notes: "Be a butterfly and flutter by!",
|
||||
mystery: mystery['201404'],
|
||||
value: 10
|
||||
}
|
||||
},
|
||||
special: {
|
||||
|
|
@ -10385,6 +10395,12 @@ var global=typeof self !== "undefined" ? self : typeof window !== "undefined" ?
|
|||
notes: "These antlers shimmer with moss and lichen.",
|
||||
mystery: mystery['201403'],
|
||||
value: 10
|
||||
},
|
||||
201404: {
|
||||
text: 'Twilight Butterfly Antennae',
|
||||
notes: "These antennae help the wearer sense dangerous distractions!",
|
||||
mystery: mystery['201404'],
|
||||
value: 10
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -13278,10 +13294,6 @@ var process=require("__browserify_process");(function() {
|
|||
if (user.items.lastDrop.count > 0) {
|
||||
user.items.lastDrop.count = 0;
|
||||
}
|
||||
user.stats.mp += _.max([10, .1 * user._statsComputed.maxMP]);
|
||||
if (user.stats.mp > user._statsComputed.maxMP) {
|
||||
user.stats.mp = user._statsComputed.maxMP;
|
||||
}
|
||||
perfect = true;
|
||||
clearBuffs = {
|
||||
str: 0,
|
||||
|
|
@ -13395,6 +13407,10 @@ var process=require("__browserify_process");(function() {
|
|||
stealth: 0,
|
||||
streaks: false
|
||||
}) : clearBuffs;
|
||||
user.stats.mp += _.max([10, .1 * user._statsComputed.maxMP]);
|
||||
if (user.stats.mp > user._statsComputed.maxMP) {
|
||||
user.stats.mp = user._statsComputed.maxMP;
|
||||
}
|
||||
progress = user.party.quest.progress;
|
||||
_progress = _.cloneDeep(progress);
|
||||
_.merge(progress, {
|
||||
|
|
|
|||
1642
dist/spritesmith.css
vendored
1642
dist/spritesmith.css
vendored
File diff suppressed because it is too large
Load diff
BIN
dist/spritesmith.png
vendored
BIN
dist/spritesmith.png
vendored
Binary file not shown.
|
Before Width: | Height: | Size: 551 KiB After Width: | Height: | Size: 552 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 3.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 3.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.9 KiB |
|
|
@ -20,6 +20,7 @@ events =
|
|||
mystery =
|
||||
201402: {start:'2014-02-22',end:'2014-02-28'}
|
||||
201403: {start:'2014-03-24',end:'2014-04-01'}
|
||||
201404: {start:'2014-04-24',end:'2014-05-01'}
|
||||
wondercon: {start:'2014-03-24',end:'2014-04-01'} # not really, but the mechanic works
|
||||
|
||||
gear =
|
||||
|
|
@ -227,6 +228,7 @@ gear =
|
|||
0: text: "No Back Accessory", notes:'No Back Accessory.', value:0
|
||||
mystery:
|
||||
201402: text: 'Golden Wings', notes: "These shining wings have feathers that glitter in the sun!", mystery:mystery['201402'], value: 10
|
||||
201404: text: 'Twilight Butterfly Wings', notes: "Be a butterfly and flutter by!", mystery:mystery['201404'], value: 10
|
||||
special:
|
||||
wondercon_red: text: 'Mighty Cape', notes: 'Swishes with strength and beauty. Special edition convention armor.', value: 0, mystery:mystery.wondercon
|
||||
wondercon_black: text: 'Sneaky Cape', notes: 'Spun of shadows and whispers. Special edition convention armor.', value: 0, mystery:mystery.wondercon
|
||||
|
|
@ -250,9 +252,9 @@ gear =
|
|||
springHealer: event: events.spring, specialClass: 'healer', text: 'Yellow Dog Ears', notes: 'Floppy but cute. Wanna play? Confers no stat bonus. Limited Edition 2014 Spring Gear.', value: 20
|
||||
wondercon_red: text: 'Mighty Mask', notes: 'What a powerful face accessory! Special edition convention armor.', value: 0, mystery:mystery.wondercon
|
||||
wondercon_black: text: 'Sneaky Mask', notes: 'Your motives are definitely legitimate. Special edition convention armor.', value: 0, mystery:mystery.wondercon
|
||||
|
||||
mystery:
|
||||
201403: text: 'Forest Walker Antlers', notes: "These antlers shimmer with moss and lichen.", mystery:mystery['201403'], value: 10
|
||||
201404: text: 'Twilight Butterfly Antennae', notes: "These antennae help the wearer sense dangerous distractions!", mystery:mystery['201404'], value: 10
|
||||
|
||||
###
|
||||
The gear is exported as a tree (defined above), and a flat list (eg, {weapon_healer_1: .., shield_special_0: ...}) since
|
||||
|
|
|
|||
Loading…
Reference in a new issue