Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b17c9a33a5 | |||
| 31d0cb5a91 | |||
| 163eb55dbb | |||
| 8661716c23 |
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "habitica",
|
||||
"version": "4.167.0",
|
||||
"version": "4.167.2",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "habitica",
|
||||
"description": "A habit tracker app which treats your goals like a Role Playing Game.",
|
||||
"version": "4.167.0",
|
||||
"version": "4.167.2",
|
||||
"main": "./website/server/index.js",
|
||||
"dependencies": {
|
||||
"@babel/core": "^7.12.3",
|
||||
|
||||
|
Before Width: | Height: | Size: 344 KiB After Width: | Height: | Size: 344 KiB |
@@ -2,10 +2,10 @@
|
||||
// possible values are: normal, fall, habitoween, thanksgiving, winter, nye, birthday, valentines, normal, normal
|
||||
// more to be added on future seasons
|
||||
|
||||
$npc_market_flavor: 'fall';
|
||||
$npc_quests_flavor: 'fall';
|
||||
$npc_seasonal_flavor: 'fall';
|
||||
$npc_timetravelers_flavor: 'fall';
|
||||
$npc_tavern_flavor: 'fall';
|
||||
$npc_market_flavor: 'normal';
|
||||
$npc_quests_flavor: 'normal';
|
||||
$npc_seasonal_flavor: 'normal';
|
||||
$npc_timetravelers_flavor: 'normal';
|
||||
$npc_tavern_flavor: 'normal';
|
||||
|
||||
$menuToolbarHeight: 56px;
|
||||
|
||||
@@ -225,31 +225,30 @@ export default {
|
||||
classGear (heroClass) {
|
||||
if (heroClass === 'rogue') {
|
||||
return {
|
||||
armor: 'armor_special_fall2020Rogue',
|
||||
head: 'head_special_fall2020Rogue',
|
||||
shield: 'shield_special_fall2020Rogue',
|
||||
weapon: 'weapon_special_fall2020Rogue',
|
||||
armor: 'armor_rogue_5',
|
||||
head: 'head_rogue_5',
|
||||
shield: 'shield_rogue_6',
|
||||
weapon: 'weapon_rogue_6',
|
||||
};
|
||||
} if (heroClass === 'wizard') {
|
||||
return {
|
||||
armor: 'armor_special_fall2020Mage',
|
||||
head: 'head_special_fall2020Mage',
|
||||
weapon: 'weapon_special_fall2020Mage',
|
||||
shield: 'shield_warrior_0',
|
||||
armor: 'armor_wizard_5',
|
||||
head: 'head_wizard_5',
|
||||
weapon: 'weapon_wizard_6',
|
||||
};
|
||||
} if (heroClass === 'healer') {
|
||||
return {
|
||||
armor: 'armor_special_fall2020Healer',
|
||||
head: 'head_special_fall2020Healer',
|
||||
shield: 'shield_special_fall2020Healer',
|
||||
weapon: 'weapon_special_fall2020Healer',
|
||||
armor: 'armor_healer_5',
|
||||
head: 'head_healer_5',
|
||||
shield: 'shield_healer_5',
|
||||
weapon: 'weapon_healer_6',
|
||||
};
|
||||
}
|
||||
return {
|
||||
armor: 'armor_special_fall2020Warrior',
|
||||
head: 'head_special_fall2020Warrior',
|
||||
shield: 'shield_special_fall2020Warrior',
|
||||
weapon: 'weapon_special_fall2020Warrior',
|
||||
armor: 'armor_warrior_5',
|
||||
head: 'head_warrior_5',
|
||||
shield: 'shield_warrior_5',
|
||||
weapon: 'weapon_warrior_6',
|
||||
};
|
||||
},
|
||||
selectionBox (selectedClass, heroClass) {
|
||||
|
||||
@@ -39,7 +39,7 @@ const featuredItems = {
|
||||
},
|
||||
{
|
||||
type: 'food',
|
||||
path: 'food.potatoe',
|
||||
path: 'food.Potatoe',
|
||||
},
|
||||
];
|
||||
},
|
||||
|
||||
@@ -1,25 +1,19 @@
|
||||
import { SEASONAL_SETS } from '../content/constants';
|
||||
// import { SEASONAL_SETS } from '../content/constants';
|
||||
|
||||
export default {
|
||||
opened: true,
|
||||
opened: false,
|
||||
|
||||
currentSeason: 'Fall',
|
||||
currentSeason: 'Closed',
|
||||
|
||||
dateRange: { start: '2020-09-22', end: '2020-10-31' },
|
||||
|
||||
availableSets: [
|
||||
...SEASONAL_SETS.fall,
|
||||
],
|
||||
|
||||
pinnedSets: {
|
||||
healer: 'fall2020DeathsHeadMothHealerSet',
|
||||
rogue: 'fall2020TwoHeadedRogueSet',
|
||||
warrior: 'fall2020WraithWarriorSet',
|
||||
wizard: 'fall2020ThirdEyeMageSet',
|
||||
},
|
||||
|
||||
availableSpells: [
|
||||
'spookySparkles',
|
||||
],
|
||||
|
||||
availableQuests: [
|
||||
|
||||
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 3.6 KiB |
|
Before Width: | Height: | Size: 4.0 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 5.7 KiB |