// Lantern.js
(function () {
/*global adventurejs A*/
/**
* @ajspath adventurejs.Atom.Asset.Matter.Tangible.Thing.Lantern
* @augments adventurejs.Thing
* @class adventurejs.Lantern
* @ajsconstruct MyGame.createAsset({ "class":"Lantern", "name":"foo", [...] })
* @ajsconstructedby adventurejs.Game#createAsset
* @ajsnavheading LightingClasses
* @param {String} game_name The name of the top level game object.
* @param {String} name A name for the object, to be serialized and used as ID.
* @summary Asset class for a lantern that can be lit and provide light.
* @tutorial Tangibles_AboutTangibles
* @classdesc
* <p>
* <strong>Lantern</strong> is a subclass of
* {@link adventurejs.Thing|Thing}
* which can be attached to / detached from a parent.
* {@link adventurejs.Asset|Assets}
* </p>
* <h3 class="examples">Example:</h3>
* <pre class="display"><code class="language-javascript">MyGame.createAsset({
* class: "Lantern",
* name: "brass lantern",
* article: "a",
* place: { on: "table" },
* descriptions: { look: "It's a brass lantern. ", },
* });
* </code></pre>
* @TODO Turn on / turn off, provide light, extinguish after time or when wet.
*/
class Lantern extends adventurejs.Thing {
constructor(name, game_name) {
super(name, game_name);
this.class = "Lantern";
this.singlePluralPairs = [["lantern", "lanterns"]];
this.is.listed_in_parent = true;
this.setDOVs(["turn"]);
this.setDOV({ shine: { with_anything: true } });
this.setIOV("look");
this.descriptions.look = "It's an antique brass lantern. ";
}
}
adventurejs.Lantern = Lantern;
})();