Use single quotes

This commit is contained in:
Blade Barringer
2015-09-19 19:37:40 -05:00
parent 1c0943b5a4
commit 110480be5a
+7 -7
View File
@@ -3,7 +3,7 @@ api = module.exports
_ = require 'lodash'
moment = require 'moment'
t = require "../../dist/scripts/content/helpers/translator"
t = require('../../dist/scripts/content/helpers/translator')
###
---------------------------------------------------------------
@@ -15,9 +15,9 @@ t = require "../../dist/scripts/content/helpers/translator"
classes = ['warrior', 'rogue', 'healer', 'wizard']
gearTypes = [ 'weapon', 'armor', 'head', 'shield', 'body', 'back', 'headAccessory', 'eyewear']
events = require("../../dist/scripts/content/events")
events = require('../../dist/scripts/content/events')
api.mystery = require("../../dist/scripts/content/mystery-sets")
api.mystery = require('../../dist/scripts/content/mystery-sets')
api.itemList =
'weapon': {localeKey: 'weapon', isEquipment: true}
@@ -546,9 +546,9 @@ api.classes = classes
api.gearTypes = gearTypes
api.spells = require("../../dist/scripts/content/spells/index")
api.spells = require('../../dist/scripts/content/spells/index')
api.cardTypes = require("../../dist/scripts/content/card-types")
api.cardTypes = require('../../dist/scripts/content/card-types')
# Intercept all spells to reduce user.stats.mp after casting the spell
_.each api.spells, (spellClass) ->
@@ -568,7 +568,7 @@ api.special = api.spells.special
---------------------------------------------------------------
###
eggs = require("../../dist/scripts/content/eggs/index")
eggs = require('../../dist/scripts/content/eggs/index')
api.dropEggs = eggs.dropEggs
@@ -627,7 +627,7 @@ api.specialMounts =
'Orca-Base': 'orca'
'Gryphon-RoyalPurple': 'royalPurpleGryphon'
api.timeTravelStable = require("../../dist/scripts/content/time-traveler-stable")
api.timeTravelStable = require('../../dist/scripts/content/time-traveler-stable')
api.hatchingPotions =
Base: value: 2, text: t('hatchingPotionBase')