Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// Climbable.js
(function () {
  /*global adventurejs A*/

  /**
   * @ajspath adventurejs.Atom.Asset.Matter.Tangible.Thing.Climbable
   * @augments adventurejs.Thing
   * @class adventurejs.Climbable
   * @ajsconstruct MyGame.createAsset({ "class":"Climbable", "name":"foo", [...] })
   * @ajsconstructedby adventurejs.Game#createAsset
   * @ajsnavheading ClimbingClasses
   * @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 Players can climb it.
   * @classdesc
   * <p>
   * <strong>Climbable</strong> is meant for players to climb; things
   * like ladders, vine, arbors. Player can climb on/to/from it,
   * swing to it, jump on/to/from it.
   * </p>
   **/
  class Climbable extends adventurejs.Thing {
    constructor(name, game_name) {
      super(name, game_name);
      this.class = "Climbable";

      this.setDOVs(["climb", "jump", "descend", "jo"]);
      this.setIOVs(["tie"]);

      this.dimensions.height = 2;
      this.quirks.climb_means_go_on = false;
      this.quirks.get_on_means_go_up = false;

      this.default_aspect = "on";

      this.is.listed_in_room = false;

      this.aspects.on = new adventurejs.Aspect(
        "on",
        this.game_name,
        this.id
      ).set({
        know_with_parent: true,
        see_with_parent: true,
        list_in_room: false,
        orientation: "vertical",
      });

      this.aspects.on.nest = new adventurejs.Nest(
        "on",
        this.game_name,
        this.id
      ).set({
        preposition: "on",
        initial_position: { x: 0, y: 0, z: 0 },
        posture: "cling",
        can: {
          climb: true,
          descend: true,
          enter: true,
          exit: true,
          go: true,
          jo: true,
          jump: true,
          scale: true,
        },
      });
    }
  }

  adventurejs.Climbable = Climbable;
})();