Class:Asset
Extends: adventurejs.Atom
Defined in: adventure/Asset.js, line 4
More info: _Overview
Public Constructor:
MyGame.createAsset({ "class":"Asset", "name":"foo" })
Asset is subclassed from the foundational class Atom, and is the most basic game world class from which all other asset classes, Tangible, Substance, and Intangible, are derived. Besides setting the prototypal validation and initialization functions, it also defines many common properties used to determine how assets appear in printed statements. It's unlikely that authors would want to subclass Asset directly as it has few properties, unless it's to create a whole new low-level Asset type.
Private Constructor:
var foo = new adventurejs.Asset(game_name, name)
Though all in-game glasses use a standard constructor method under the hood, it's unlikely that you'd need to call it directly. To create an instance of the Asset class, it must be defined in a game file as a generic object. That object will be used at runtime to construct a new game class instance, which will be validated and initialized before adding it to the Game. See above for the public constructor, or see Game#createAsset to learn more.
Parameters:
-
game_name
String
The name of the top level game object. -
name
String
A name for the object, to be serialized and used as ID.
- Index
- Methods
- Properties
Index
Methods:
- $can
- $is
- $must
- $quirks
- $quirks
- addWordsToLookup
- aliases
- allowVerbOnce
- allowVerbWithAnything
- allowVerbWithAsset
- allowVerbWithNothing
- allowVerbWithPreposition
- callAction
- canDoVerbAutomatically
- canSetVerbState
- destroy
- didDoVerbs
- didIoVerbs
- didVerb
- didVerbCount
- Inherited from Atom getClassInheritance
- getVerbConnectionCount
- getVerbConnections
- getVerbMaxConnections
- getVerbParam
- getVerbState
- has
- hasAction
- Inherited from Atom hasClass
- hasDescription
- hasDirectObjects
- hasIndirectDescription
- hasIndirectObjects
- hasVerbMaxConnections
- hasVerbParam
- iDidVerb
- iDidVerbCount
- incrementDoVerbCount
- incrementTryVerbCount
- initialize
- isConnectedToAnything
- isConnectedToAsset
- isConnectedToNothing
- isDOV
- isIOV
- isOV
- isVerbState
- iTriedVerb
- iTriedVerbCount
- redirectVerb
- Inherited from Atom Overrides from Atom set
- setDOV
- setDOVs
- setIOV
- setIOVs
- setIs
- setLinkedState
- setObjectOfVerbs
- setVerbState
- setVerbSubscription
- setVerbSubscriptionsWithAssets
- setVerbWithAsset
- setVerbWithClass
- toggleState
- triedVerb
- triedVerbCount
- undestroy
- unredirectVerb
- unsetDOV
- unsetDOVs
- unsetIOV
- unsetIOVs
- unsetVerbSubscription
- validate
- validateVerbConnections
Properties:
- adjectives
- article_name
- articlename
- Articlename
- articlename_is
- Articlename_is
- articlename_isnt
- Articlename_isnt
- articlename_was
- Articlename_was
- articlename_wasnt
- Articlename_wasnt
- can
- collection
- definite_article
- definite_name
- description
- descriptions
- did
- dont_use_articles
- dov
- dov
- exclude_from_lookup
- Inherited from Atom game
- image
- indefinite_article
- indefinite_name
- iov
- is
- is.abstract
- is.abstract
- is.collection
- is.destroyed
- is.extant
- is.global
- is.initialized
- is.known
- is.known
- is.nameless
- is.plugged
- is.pluggedIn
- is.plural
- is.singleton
- is.validated
- must
- Inherited from Atom Name
- name_is_proper
- noun
- noun
- noun
- plural
- possessive
- print_bold
- print_class
- print_italic
- print_style
- pronoun
- propername
- proxy
- proxy
- quirks
- short_name
- singlePluralPairs
- split_name_for_world_lookup
- to_be
- to_be
- tried
- use_definite_article_in_lists
Methods Collapse all |
$can()
Defined in: adventure/asset/$can.js, line 6
$is()
Defined in: adventure/asset/$is.js, line 6
asset.is
nested object. It can also test
for more complex circumstances, such as in the case of
Tangibles. For example, if your game has a sword in a stone,
you can test whether the sword is currently in the stone with
MyGame.$("sword").is("in", "stone")
$must()
Defined in: adventure/asset/$must.js, line 6
$quirks() → {Boolean}
Defined in: adventure/asset/$quirk.js, line 6
Returns:
Boolean
$quirks() → {Object}
Defined in: adventure/asset/$quirks.js, line 6
Returns:
Object
addWordsToLookup(words, type)
Defined in: adventure/asset/addWordsToLookup.js, line 5
Parameters:
-
words
Array -
type
String
aliases()
Defined in: adventure/Asset.js, line 812
allowVerbOnce(verb, ov) → {Boolean}
Defined in: adventure/asset/allowVerbOnce.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
Returns:
Boolean
allowVerbWithAnything(verb, ov) → {Boolean}
Defined in: adventure/asset/allowVerbWithAnything.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
Returns:
Boolean
allowVerbWithAsset(verb, asset, ov) → {Boolean}
Defined in: adventure/asset/allowVerbWithAsset.js, line 5
Parameters:
-
verb
String
The name of a verb. -
asset
Object
A game asset. -
ov
String
Direct or indirect object of verb.
Returns:
Boolean
allowVerbWithNothing(verb, ov) → {Boolean}
Defined in: adventure/asset/allowVerbWithNothing.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
Returns:
Boolean
allowVerbWithPreposition(verb, prep, ov) → {Boolean}
Defined in: adventure/asset/allowVerbWithPreposition.js, line 5
Parameters:
-
verb
String
A verb name. -
prep
String
A preposition. -
ov
String
Direct or indirect object of verb.
Returns:
Boolean
callAction(action, asset2, asset3, params) → {Boolean}
Defined in: adventure/asset/callAction.js, line 5
Parameters:
-
action
string -
asset2
string
We use asset.name here instead of asset.id in support of authors, because we're never asking them to deal in IDs, only names. Hooks will only be defined by authors, so we let them use asset.name as their identifier. We do however make an effort to see if an id has been passed instead of a name, because Ivan. -
asset3
string -
params
object
Arbitrary parameter object.
Returns:
Boolean
canDoVerbAutomatically(verb) → {Boolean}
Defined in: adventure/asset/canDoVerbAutomatically.js, line 5
Parameters:
-
verb
String
Returns:
Boolean
canSetVerbState(verb) → {Boolean}
Defined in: adventure/asset/canSetVerbState.js, line 5
Parameters:
-
verb
String
Returns:
Boolean
destroy()
Defined in: adventure/asset/destroy.js, line 6
Todos: What else needs to happen on destroy?
didDoVerbs(verbs) → {Boolean}
Defined in: adventure/asset/didDoVerbs.js, line 5
Parameters:
-
verbs
Array
Returns:
Boolean
didIoVerbs(verbs) → {Boolean}
Defined in: adventure/asset/didIoVerbs.js, line 5
Parameters:
-
verbs
Array
Returns:
Boolean
didVerb(verb, ov) → {Boolean}
Defined in: adventure/asset/didVerb.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
$did is an alias for authors.
Returns:
Boolean
didVerbCount(verb, ov) → {Int}
Defined in: adventure/asset/didVerbCount.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
$didCount is an alias for authors.
Returns:
Int
getClassInheritance() → {Array}
Defined in: adventure/Atom.js, line 144
Inherited from: adventurejs.Atom#getClassInheritance
Returns:
Array
getVerbConnectionCount(verb, to_ov) → {Int}
Defined in: adventure/asset/getVerbConnectionCount.js, line 5
Parameters:
-
verb
String
The name of a verb. -
to_ov
String
Connection to direct or indirect objects of verb.
Returns:
Int
getVerbConnections(verb, to_ov) → {Array}
Defined in: adventure/asset/getVerbConnections.js, line 5
Parameters:
-
verb
String
The name of a verb. -
to_ov
String
Connection to direct or indirect objects of verb.
Returns:
Array
getVerbMaxConnections(verb, ov) → {Boolean}
Defined in: adventure/asset/getVerbMaxConnections.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
Returns:
Boolean
getVerbParam(verb, param) → {*}
Defined in: adventure/asset/getVerbParam.js, line 5
Parameters:
-
verb
String
The name of a verb. -
param
String
The name of a param in with_params.
Returns:
*
getVerbState()
Defined in: adventure/asset/getVerbState.js, line 5
has()
Defined in: adventure/asset/$has.js, line 6
if( MyGame.$('crown').$has('jewel') ){ // do stuff }
hasAction(hook_name, asset1_name, asset2_name) → {Boolean}
Defined in: adventure/asset/hasAction.js, line 5
Parameters:
-
hook_name
string -
asset1_name
string
We use asset.name here instead of asset.id to make life slightly easier for authors. Asset IDs are formed from asset names, but generally we don't expect authors to be aware of IDs. Hooks will only be defined by authors, so let them use asset.name as their identifier. We do however make an effort to see if an id has been passed instead of a name. -
asset2_name
string
Returns:
Boolean
hasClass(prop) → {Boolean}
Defined in: adventure/Atom.js, line 124
Inherited from: adventurejs.Atom#hasClass
Parameters:
-
prop
String
Name of the class to test for.
Returns:
Boolean
hasDescription(identifier) → {String|Boolean}
Defined in: adventure/asset/hasDescription.js, line 5
Parameters:
-
identifier
String
Returns:
String
|
Boolean
hasDirectObjects(verb) → {Boolean}
Defined in: adventure/asset/hasDirectObjects.js, line 5
Parameters:
-
verb
String
Returns:
Boolean
hasIndirectDescription(indirect_aspect, indirect_asset, direct_aspect) → {String|Boolean}
Defined in: adventure/asset/hasIndirectDescription.js, line 5
- Yes
Todos: delete
Parameters:
-
indirect_aspect
String -
indirect_asset
Object -
direct_aspect
String
Returns:
String
|
Boolean
hasIndirectObjects(verb) → {Boolean}
Defined in: adventure/asset/hasIndirectObjects.js, line 5
Parameters:
-
verb
String
Returns:
Boolean
hasVerbMaxConnections(verb, to_ov) → {Boolean}
Defined in: adventure/asset/hasVerbMaxConnections.js, line 5
Todos: dov/iov or both
Parameters:
-
verb
String
The name of a verb. -
to_ov
String
Connection to direct or indirect objects of verb.
Returns:
Boolean
hasVerbParam(verb, param) → {*}
Defined in: adventure/asset/hasVerbParam.js, line 5
Parameters:
-
verb
String
The name of a verb. -
param
String
The name of a param in with_params.
Returns:
*
iDidVerb(verb, ov) → {Boolean}
Defined in: adventure/asset/iDidVerb.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
$iDidDo is an alias for authors.
Returns:
Boolean
iDidVerbCount(verb, ov) → {Int}
Defined in: adventure/asset/iDidVerbCount.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
$iDidCount is an alias for authors.
Returns:
Int
incrementDoVerbCount(verb, ov)
Defined in: adventure/asset/incrementDoVerbCount.js, line 5
Parameters:
-
verb
String -
ov
String
"dov" or "iov" representing a direct or indirect object.
incrementTryVerbCount(verb, index)
Defined in: adventure/asset/incrementTryVerbCount.js, line 5
Parameters:
-
verb
String -
index
Int
initialize()
Defined in: adventure/Asset.js, line 631
Because we're not doing natural language processing and everything is indexed, we want to increase the chances that the parser understands player input that is partial or has words jumbled. We add a lookup entry for every combination of an object's adjectives with its noun(s). For example we have a "green colored pencil", and we want the parser to understand "green pencil" or "colored pencil". If there are other colored pencils, we want the parser to understand "colored pencils". If there are colored pencils in three shades of green, we want the parser to understand "green pencils". We store all of these combinations to the lookup.
isConnectedToAnything(verb, to_ov) → {Boolean}
Defined in: adventure/asset/isConnectedToAnything.js, line 5
Parameters:
-
verb
String
The name of a verb. -
to_ov
String
Direct or indirect object of verb.
plugIn
or tie
. For example, if this asset
is a computer plugged into an outlet, this method would return true.
Returns:
Boolean
isConnectedToAsset(verb, asset, to_ov) → {Boolean}
Defined in: adventure/asset/isConnectedToAsset.js, line 5
Parameters:
-
verb
String
The name of the verb to test. -
asset
Object | String
A game asset or asset id to test. -
to_ov
String
Connection to direct or indirect objects of verb.
Returns:
Boolean
isConnectedToNothing(verb, ov) → {Boolean}
Defined in: adventure/asset/isConnectedToNothing.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
asset.is.connected_by.plugIn.to_iov
to represent the computer's plugged in state.
Returns:
Boolean
isDOV(verb) → {Boolean}
Defined in: adventure/asset/isDOV.js, line 5
Parameters:
-
verb
String
Returns:
Boolean
isIOV(verb) → {Boolean}
Defined in: adventure/asset/isIOV.js, line 5
Parameters:
-
verb
String
Returns:
Boolean
isOV(verb) → {Boolean}
Defined in: adventure/asset/isOV.js, line 5
Parameters:
-
verb
String
Returns:
Boolean
isVerbState(verb) → {Boolean}
Defined in: adventure/asset/isVerbState.js, line 5
Parameters:
-
verb
String
Returns:
Boolean
iTriedVerb(verb, ov) → {Boolean}
Defined in: adventure/asset/iTriedVerb.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
$iTried is an alias for authors.
Returns:
Boolean
iTriedVerbCount(verb, ov) → {Boolean}
Defined in: adventure/asset/iTriedVerbCount.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
$iTryCount is an alias for authors.
Returns:
Boolean
redirectVerb(oldVerb, newVerb)
Defined in: adventure/asset/redirectVerb.js, line 6
Parameters:
-
oldVerb
String -
newVerb
String
set(props) → {Object}
Defined in: adventure/Atom.js, line 112
Overrides from: adventurejs.Atom#set
Parameters:
-
props
Object
A generic object containing properties to copy to the Object instance.
Returns:
Object
Returns the instance the method is called on (useful for chaining calls.)
setDOV(verb, params)
Defined in: adventure/asset/setDOV.js, line 6
Parameters:
-
verb
String -
params
Object
setVerbSubscription
with direct object specified.
setDOVs(verb, params)
Defined in: adventure/asset/setDOVs.js, line 6
Parameters:
-
verb
String -
params
Object
setVerbSubscription
with direct object specified.
setIOV(verb, params)
Defined in: adventure/asset/setIOV.js, line 6
Parameters:
-
verb
String -
params
Object
setVerbSubscription
with indirect object specified.
setIOVs(verb, params)
Defined in: adventure/asset/setIOVs.js, line 6
Parameters:
-
verb
String -
params
Object
setVerbSubscription
with indirect object specified.
setIs(bool)
setLinkedState(bool)
Defined in: adventure/asset/setLinkedState.js, line 6
Parameters:
-
bool
Boolean
setObjectOfVerbs(object_of, verb)
Defined in: adventure/asset/setObjectOfVerbs.js, line 6
Parameters:
-
object_of
String -
verb
String
setVerbSubscription
.
setVerbState()
Defined in: adventure/asset/setVerbState.js, line 5
setVerbSubscription(object_of, verb, params)
Defined in: adventure/asset/setVerbSubscription.js, line 5
Todos: phase out earlier version
Parameters:
-
object_of
String -
verb
String | Object
An early version takes a string, with separate params object. A later version takes an object that includes the verb name as an object key and params as value. -
params
Object
An optional param that works with the earlier version.
setVerbSubscriptionsWithAssets(description) → {String}
Defined in: adventure/asset/setVerbSubscriptionsWithAssets.js, line 5
Parameters:
-
description
String
Returns:
String
setVerbWithAsset(verb, asset, ov) → {Boolean}
Defined in: adventure/asset/setVerbWithAsset.js, line 5
Parameters:
-
verb
String
The name of a verb. -
asset
Object -
ov
String
Direct or indirect object of verb.
Returns:
Boolean
setVerbWithClass(verb, klass, ov) → {Boolean}
Defined in: adventure/asset/setVerbWithClass.js, line 5
Parameters:
-
verb
String
The name of a verb. -
klass
String -
ov
String
Direct or indirect object of verb.
Returns:
Boolean
toggleState(verb) → {Boolean}
Defined in: adventure/asset/toggleState.js, line 5
Parameters:
-
verb
String
Returns:
Boolean
triedVerb(verb, ov) → {Boolean}
Defined in: adventure/asset/triedVerb.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
$tried is an alias for authors.
Returns:
Boolean
triedVerbCount(verb, ov) → {Boolean}
Defined in: adventure/asset/triedVerbCount.js, line 5
Parameters:
-
verb
String
The name of a verb. -
ov
String
Direct or indirect object of verb.
$triedCount is an alias for authors.
Returns:
Boolean
undestroy()
Defined in: adventure/asset/undestroy.js, line 6
unredirectVerb(oldVerb)
Defined in: adventure/asset/unredirectVerb.js, line 6
Parameters:
-
oldVerb
String
unsetDOV(verb)
Defined in: adventure/asset/unsetDOV.js, line 6
Parameters:
-
verb
String
unsetVerbSubscription
.
unsetDOVs(verbs)
Defined in: adventure/asset/unsetDOVs.js, line 6
Parameters:
-
verbs
Array
unsetVerbSubscription
.
unsetIOV(verb)
Defined in: adventure/asset/unsetIOV.js, line 6
Parameters:
-
verb
String
unsetVerbSubscription
.
unsetIOVs(verbs)
Defined in: adventure/asset/unsetIOVs.js, line 6
Parameters:
-
verbs
Array
unsetVerbSubscription
.
unsetVerbSubscription(object_of, verb)
Defined in: adventure/asset/unsetVerbSubscription.js, line 5
Parameters:
-
object_of
String -
verb
String
validate()
Defined in: adventure/Asset.js, line 609
validateVerbConnections()
Defined in: adventure/asset/validateVerbConnections.js, line 5
dov[verb]
and some verbs can make connections between assets
that they act upon. Connections are stored in
asset.is.connected_by.verbname.to_iov["array of asset ids"]
.
Authors can preset connections in their game file,
so we validate any preset connections here.
Properties |
adjectives :Getter/Setter
Defined in: adventure/Asset.js, line 318
article_name :Getter
Defined in: adventure/Asset.js, line 400
articlename :Getter
Defined in: adventure/Asset.js, line 414
Articlename :Getter
Defined in: adventure/Asset.js, line 481
articlename_is :Getter
Defined in: adventure/Asset.js, line 441
Articlename_is :Getter
Defined in: adventure/Asset.js, line 490
articlename_isnt :Getter
Defined in: adventure/Asset.js, line 451
Articlename_isnt :Getter
Defined in: adventure/Asset.js, line 499
articlename_was :Getter
Defined in: adventure/Asset.js, line 461
Articlename_was :Getter
Defined in: adventure/Asset.js, line 508
articlename_wasnt :Getter
Defined in: adventure/Asset.js, line 471
Articlename_wasnt :Getter
Defined in: adventure/Asset.js, line 517
can :Object
Defined in: adventure/Asset.js, line 48
collection :Getter/Setter
Defined in: adventure/Asset.js, line 182
definite_article :String
Defined in: adventure/Asset.js, line 213
Default value: 'the'
definite_name :Getter
Defined in: adventure/Asset.js, line 359
description :*
Defined in: adventure/Asset.js, line 546
descriptions :Object
Defined in: adventure/Asset.js, line 158
description
is required, all others
are optional. Most of these apply only to Tangible Asset.
descriptions.description
-descriptions.brief
- used for room descriptions if player has typed "brief"descriptions.verbose
- used for room descriptions if player has typed "verbose"descriptions.listen
- used if player types "listen" or "listen to thing"descriptions.in
- used if player types "look in thing"descriptions.through
- used if player types "look through thing"descriptions.smell
- used if player types "smell thing"descriptions.taste
- used if player types "taste thing"descriptions.touch
- used if player types "touch thing"descriptions.careful
- used if player types "carefully examine thing"
did :Object
Defined in: adventure/Asset.js, line 328
dont_use_articles :Boolean
Defined in: adventure/Asset.js, line 240
Default value: false
dov :Boolean
Defined in: adventure/Asset.js, line 62
Default value: {}
dov :Boolean
Defined in: adventure/Asset.js, line 70
Default value: {}
exclude_from_lookup :Boolean
Defined in: adventure/Asset.js, line 132
Default value: false
game :Getter
Defined in: adventure/Atom.js, line 103
Inherited from: adventurejs.Atom#game
this.game
.
image :String
Defined in: adventure/Asset.js, line 342
indefinite_article :String
Defined in: adventure/Asset.js, line 221
Default value: 'a'
indefinite_name :Getter
Defined in: adventure/Asset.js, line 386
iov :Boolean
Defined in: adventure/Asset.js, line 80
Default value: {}
is :Object
Defined in: adventure/Asset.js, line 37
asset.is.state
.
Note that there is also an asset.$is() method which
is related to this, but is a distinct function.
is.abstract :Boolean
Defined in: adventure/Asset_Is.js, line 88
Default value: false
Nested property of Is
is.abstract :Boolean
Defined in: adventure/Asset_Is.js, line 114
Default value: false
Nested property of Is
is.collection :Boolean
Defined in: adventure/Asset_Is.js, line 48
Default value: true
Nested property of Is
is.destroyed :Boolean
Defined in: adventure/Asset_Is.js, line 33
Default value: false
Nested property of Is
is.extant :Boolean
Defined in: adventure/Asset_Is.js, line 41
Default value: true
Nested property of Is
is.global :Boolean
Defined in: adventure/Asset_Is.js, line 79
Default value: false
Nested property of Is
is.initialized :Boolean
Defined in: adventure/Asset_Is.js, line 62
Default value: false
Nested property of Is
is.known :Boolean
Defined in: adventure/Asset_Is.js, line 26
Default value: false
Nested property of Is
is.known :Boolean
Defined in: adventure/assets/Tangible_Is.js, line 26
Default value: false
Nested property of Is
is.nameless :Boolean
Defined in: adventure/Asset_Is.js, line 69
Default value: false
Nested property of Is
is.plugged :Boolean
Defined in: adventure/assets/Tangible_Is.js, line 35
Default value: false
Nested property of Is
is.pluggedIn :Boolean
Defined in: adventure/assets/Tangible_Is.js, line 42
Default value: false
Nested property of Is
is.plural :Boolean
Defined in: adventure/Asset_Is.js, line 105
Default value: false
Nested property of Is
is.singleton :Boolean
Defined in: adventure/Asset_Is.js, line 95
Default value: false
Nested property of Is
Todos: Have only applied this to several special global assets, and have not implemented any code around it. Is it still useful?
is.validated :Boolean
Defined in: adventure/Asset_Is.js, line 55
Default value: false
Nested property of Is
must :Object
Defined in: adventure/Asset.js, line 55
Name :String
Defined in: adventure/Atom.js, line 90
Inherited from: adventurejs.Atom#Name
name_is_proper :Boolean
Defined in: adventure/Asset.js, line 197
Default value: false
noun :String
Defined in: adventure/Asset.js, line 250
noun :String
Defined in: adventure/Asset.js, line 298
noun :String
Defined in: adventure/Asset.js, line 308
plural :String
Defined in: adventure/Asset.js, line 289
possessive :String
Defined in: adventure/Asset.js, line 267
print_bold :Boolean
Defined in: adventure/Asset.js, line 102
Default value: false
print_class :String
Defined in: adventure/Asset.js, line 124
Default value: ""
print_italic :Boolean
Defined in: adventure/Asset.js, line 109
Default value: false
print_style :String
Defined in: adventure/Asset.js, line 116
Default value: ""
pronoun :String
Defined in: adventure/Asset.js, line 259
propername :String
Defined in: adventure/Asset.js, line 204
proxy :Getter
Defined in: adventure/Asset.js, line 536
proxy :Getter
Defined in: adventure/assets/tangibles/Exit.js, line 355
quirks :Object
Defined in: adventure/Asset.js, line 91
quirks.stand_means_get_off
set to true, player
will get off the chair, as opposed to trying to stand in
place on the chair.
short_name :Getter
Defined in: adventure/Asset.js, line 373
singlePluralPairs :Array
Defined in: adventure/Asset.js, line 277
split_name_for_world_lookup :Boolean
Defined in: adventure/Asset.js, line 141
Default value: true
But, an author might want to name a thing, eg, "hole in the ground", in which case we wind up with lookup table entries for "hole" and "in" and "the" and "ground", which is likely to lead to bad input parsing. To avoid name splitting, set split_name_for_world_lookup to false. The object's full name will still be added to the lookup.
to_be :Getter
Defined in: adventure/Asset.js, line 580
to_be :Getter
Defined in: adventure/Asset.js, line 590
tried :Object
Defined in: adventure/Asset.js, line 335
use_definite_article_in_lists :Boolean
Defined in: adventure/Asset.js, line 229
Default value: false