From ee2134dcb7eaec7c358ab768f12000075e9b90c8 Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Thu, 1 Oct 2015 12:30:51 -0500 Subject: [PATCH] Add comment to eggs file --- common/script/src/content/eggs/index.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/common/script/src/content/eggs/index.js b/common/script/src/content/eggs/index.js index a137ade6dd..ece3a7692f 100644 --- a/common/script/src/content/eggs/index.js +++ b/common/script/src/content/eggs/index.js @@ -1,5 +1,25 @@ import {merge} from '../helpers'; +//-------------------------------------------------- +// Eggs are generated from an array of pet keys +// +// : { +// text: t(EggText), +// mountText: t(EggMountText), +// notes: t(EggText,{ +// eggText: this.text, +// eggAdjective: t(EggAdjective) +// }), +// canBuy: , +// value: 3, +// key: , +// } +// +// is the name of the pet associated with the egg +// is the type of egg (drop, quest, etc) passed in as part of an options object +// is a boolean passed in as part of an options object +//-------------------------------------------------- + import dropEggs from './drops'; import questEggs from './quest';