mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
feat(event): Derby Day mount
This commit is contained in:
parent
7dc64f8448
commit
46543f9072
5 changed files with 10 additions and 0 deletions
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
|
|
@ -13,6 +13,7 @@
|
|||
"hydra": "Hydra",
|
||||
"mantisShrimp": "Mantis Shrimp",
|
||||
"mammoth": "Woolly Mammoth",
|
||||
"orca": "Orca",
|
||||
"rarePetPop1": "Click the gold paw to learn more about how you can obtain this rare pet through contributing to HabitRPG!",
|
||||
"rarePetPop2": "How to Get this Pet!",
|
||||
"potion": "<%= potionType %> Potion",
|
||||
|
|
|
|||
|
|
@ -1012,6 +1012,7 @@ api.specialMounts =
|
|||
'MantisShrimp-Base': 'mantisShrimp'
|
||||
'Turkey-Base': 'turkey'
|
||||
'Mammoth-Base': 'mammoth'
|
||||
'Orca-Base': 'orca'
|
||||
|
||||
api.hatchingPotions =
|
||||
Base: value: 2, text: t('hatchingPotionBase')
|
||||
|
|
|
|||
8
migrations/20150706_orca_mounts.js
Normal file
8
migrations/20150706_orca_mounts.js
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
* Created by Sabe on 7/6/2015.
|
||||
*/
|
||||
db.users.update(
|
||||
{},
|
||||
{$set:{'items.mounts.Orca-Base':true}},
|
||||
{multi:true}
|
||||
);
|
||||
Loading…
Reference in a new issue