diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Orca-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Orca-Base.png new file mode 100644 index 0000000000..5c2895a8e7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Orca-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Orca-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Orca-Base.png new file mode 100644 index 0000000000..64df01902a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Orca-Base.png differ diff --git a/common/locales/en/pets.json b/common/locales/en/pets.json index ab2c2a9464..7752f2747a 100644 --- a/common/locales/en/pets.json +++ b/common/locales/en/pets.json @@ -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", diff --git a/common/script/content.coffee b/common/script/content.coffee index b7a3a6c38c..9420fef4f0 100644 --- a/common/script/content.coffee +++ b/common/script/content.coffee @@ -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') diff --git a/migrations/20150706_orca_mounts.js b/migrations/20150706_orca_mounts.js new file mode 100644 index 0000000000..e8b6fe662a --- /dev/null +++ b/migrations/20150706_orca_mounts.js @@ -0,0 +1,8 @@ +/** + * Created by Sabe on 7/6/2015. + */ +db.users.update( + {}, + {$set:{'items.mounts.Orca-Base':true}}, + {multi:true} +);