@sharpee/lang-en-us 0.9.111 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -1
- package/actions/asking.d.ts.map +1 -1
- package/actions/asking.js +15 -13
- package/actions/asking.js.map +1 -1
- package/actions/attacking.d.ts.map +1 -1
- package/actions/attacking.js +55 -51
- package/actions/attacking.js.map +1 -1
- package/actions/climbing.d.ts.map +1 -1
- package/actions/climbing.js +4 -3
- package/actions/climbing.js.map +1 -1
- package/actions/closing.js +5 -5
- package/actions/closing.js.map +1 -1
- package/actions/drinking.js +20 -20
- package/actions/drinking.js.map +1 -1
- package/actions/dropping.d.ts.map +1 -1
- package/actions/dropping.js +4 -3
- package/actions/dropping.js.map +1 -1
- package/actions/eating.js +20 -20
- package/actions/eating.js.map +1 -1
- package/actions/entering.js +10 -10
- package/actions/entering.js.map +1 -1
- package/actions/examining.d.ts +1 -0
- package/actions/examining.d.ts.map +1 -1
- package/actions/examining.js +12 -11
- package/actions/examining.js.map +1 -1
- package/actions/exiting.js +4 -4
- package/actions/exiting.js.map +1 -1
- package/actions/giving.js +12 -12
- package/actions/giving.js.map +1 -1
- package/actions/going.js +2 -2
- package/actions/going.js.map +1 -1
- package/actions/index.d.ts +1 -39
- package/actions/index.d.ts.map +1 -1
- package/actions/index.js +0 -3
- package/actions/index.js.map +1 -1
- package/actions/inserting.js +8 -8
- package/actions/inserting.js.map +1 -1
- package/actions/inventory.d.ts.map +1 -1
- package/actions/inventory.js +3 -0
- package/actions/inventory.js.map +1 -1
- package/actions/listening.js +7 -7
- package/actions/listening.js.map +1 -1
- package/actions/locking.js +8 -8
- package/actions/locking.js.map +1 -1
- package/actions/looking.js +2 -2
- package/actions/looking.js.map +1 -1
- package/actions/lowering.js +2 -2
- package/actions/lowering.js.map +1 -1
- package/actions/opening.js +7 -7
- package/actions/opening.js.map +1 -1
- package/actions/pulling.js +19 -19
- package/actions/pulling.js.map +1 -1
- package/actions/pushing.js +14 -14
- package/actions/pushing.js.map +1 -1
- package/actions/putting.js +12 -12
- package/actions/putting.js.map +1 -1
- package/actions/raising.js +2 -2
- package/actions/raising.js.map +1 -1
- package/actions/reading.js +8 -8
- package/actions/reading.js.map +1 -1
- package/actions/removing.js +8 -8
- package/actions/removing.js.map +1 -1
- package/actions/searching.js +7 -7
- package/actions/searching.js.map +1 -1
- package/actions/showing.js +11 -11
- package/actions/showing.js.map +1 -1
- package/actions/smelling.js +10 -10
- package/actions/smelling.js.map +1 -1
- package/actions/switching-off.js +12 -12
- package/actions/switching-off.js.map +1 -1
- package/actions/switching-on.js +11 -11
- package/actions/switching-on.js.map +1 -1
- package/actions/taking-off.js +4 -4
- package/actions/taking-off.js.map +1 -1
- package/actions/taking.d.ts.map +1 -1
- package/actions/taking.js +8 -5
- package/actions/taking.js.map +1 -1
- package/actions/talking.js +15 -15
- package/actions/talking.js.map +1 -1
- package/actions/telling.d.ts.map +1 -1
- package/actions/telling.js +14 -13
- package/actions/telling.js.map +1 -1
- package/actions/throwing.d.ts.map +1 -1
- package/actions/throwing.js +24 -20
- package/actions/throwing.js.map +1 -1
- package/actions/touching.js +20 -20
- package/actions/touching.js.map +1 -1
- package/actions/turning.js +24 -24
- package/actions/turning.js.map +1 -1
- package/actions/unlocking.js +8 -8
- package/actions/unlocking.js.map +1 -1
- package/actions/waiting.js +1 -1
- package/actions/waiting.js.map +1 -1
- package/actions/wearing.js +5 -5
- package/actions/wearing.js.map +1 -1
- package/index.d.ts +1 -0
- package/index.d.ts.map +1 -1
- package/index.js +6 -1
- package/index.js.map +1 -1
- package/language-provider.d.ts +16 -0
- package/language-provider.d.ts.map +1 -1
- package/language-provider.js +25 -0
- package/language-provider.js.map +1 -1
- package/package.json +3 -3
- package/sound-messages.d.ts +69 -0
- package/sound-messages.d.ts.map +1 -0
- package/sound-messages.js +81 -0
- package/sound-messages.js.map +1 -0
package/actions/removing.js
CHANGED
|
@@ -16,14 +16,14 @@ exports.removingLanguage = {
|
|
|
16
16
|
],
|
|
17
17
|
messages: {
|
|
18
18
|
'no_target': "Remove what?",
|
|
19
|
-
'no_source': "Remove {item} from what?",
|
|
20
|
-
'not_in_container': "{item} isn't in {container}.",
|
|
21
|
-
'not_on_surface': "{item} isn't on {surface}.",
|
|
22
|
-
'container_closed': "{container} is closed.",
|
|
23
|
-
'removed_from': "{You} {take} {item} from {container}.",
|
|
24
|
-
'removed_from_surface': "{You} {take} {item} from {surface}.",
|
|
25
|
-
'cant_reach': "{You} {can't} reach {item}.",
|
|
26
|
-
'already_have': "{You} already {have} {item}."
|
|
19
|
+
'no_source': "Remove {the:item} from what?",
|
|
20
|
+
'not_in_container': "{the:cap:item} isn't in {the:container}.",
|
|
21
|
+
'not_on_surface': "{the:cap:item} isn't on {the:surface}.",
|
|
22
|
+
'container_closed': "{the:cap:container} is closed.",
|
|
23
|
+
'removed_from': "{You} {take} {the:item} from {the:container}.",
|
|
24
|
+
'removed_from_surface': "{You} {take} {the:item} from {the:surface}.",
|
|
25
|
+
'cant_reach': "{You} {can't} reach {the:item}.",
|
|
26
|
+
'already_have': "{You} already {have} {the:item}."
|
|
27
27
|
},
|
|
28
28
|
help: {
|
|
29
29
|
description: 'Remove objects from containers or surfaces.',
|
package/actions/removing.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"removing.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/removing.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,qCAAqC;QACrC,mCAAmC;QACnC,qCAAqC;QACrC,kCAAkC;QAClC,sCAAsC;KACvC;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,cAAc;QAC3B,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"removing.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/removing.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,qCAAqC;QACrC,mCAAmC;QACnC,qCAAqC;QACrC,kCAAkC;QAClC,sCAAsC;KACvC;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,cAAc;QAC3B,WAAW,EAAE,8BAA8B;QAC3C,kBAAkB,EAAE,0CAA0C;QAC9D,gBAAgB,EAAE,wCAAwC;QAC1D,kBAAkB,EAAE,gCAAgC;QACpD,cAAc,EAAE,+CAA+C;QAC/D,sBAAsB,EAAE,6CAA6C;QACrE,YAAY,EAAE,iCAAiC;QAC/C,cAAc,EAAE,kCAAkC;KACnD;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,6CAA6C;QAC1D,QAAQ,EAAE,mEAAmE;QAC7E,OAAO,EAAE,kFAAkF;KAC5F;CACF,CAAC"}
|
package/actions/searching.js
CHANGED
|
@@ -18,17 +18,17 @@ exports.searchingLanguage = {
|
|
|
18
18
|
],
|
|
19
19
|
messages: {
|
|
20
20
|
// Error messages
|
|
21
|
-
'not_visible': "{You} {can't} see {target} to search it.",
|
|
22
|
-
'not_reachable': "{You} {can't} reach {target} to search it.",
|
|
23
|
-
'container_closed': "{target} is closed.",
|
|
21
|
+
'not_visible': "{You} {can't} see {the:target} to search it.",
|
|
22
|
+
'not_reachable': "{You} {can't} reach {the:target} to search it.",
|
|
23
|
+
'container_closed': "{the:cap:target} is closed.",
|
|
24
24
|
// Success messages
|
|
25
25
|
'nothing_special': "{You} {find} nothing of interest.",
|
|
26
26
|
'found_items': "{You} {discover}: {items}.",
|
|
27
|
-
'empty_container': "{target} is empty.",
|
|
28
|
-
'container_contents': "In {target} {you} {see}: {items}.",
|
|
29
|
-
'supporter_contents': "On {target} {you} {see}: {items}.",
|
|
27
|
+
'empty_container': "{the:cap:target} is empty.",
|
|
28
|
+
'container_contents': "In {the:target} {you} {see}: {items}.",
|
|
29
|
+
'supporter_contents': "On {the:target} {you} {see}: {items}.",
|
|
30
30
|
'searched_location': "{You} {search} around carefully.",
|
|
31
|
-
'searched_object': "{You} {search} {target} thoroughly.",
|
|
31
|
+
'searched_object': "{You} {search} {the:target} thoroughly.",
|
|
32
32
|
'found_concealed': "Hidden {where}, {you} {discover}: {items}."
|
|
33
33
|
},
|
|
34
34
|
help: {
|
package/actions/searching.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"searching.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/searching.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,iBAAiB,GAAG;IAC/B,QAAQ,EAAE,qBAAqB;IAE/B,QAAQ,EAAE;QACR,oBAAoB;QACpB,qBAAqB;QACrB,yBAAyB;QACzB,0BAA0B;QAC1B,qBAAqB;QACrB,wBAAwB;QACxB,6BAA6B;QAC7B,6BAA6B;KAC9B;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"searching.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/searching.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,iBAAiB,GAAG;IAC/B,QAAQ,EAAE,qBAAqB;IAE/B,QAAQ,EAAE;QACR,oBAAoB;QACpB,qBAAqB;QACrB,yBAAyB;QACzB,0BAA0B;QAC1B,qBAAqB;QACrB,wBAAwB;QACxB,6BAA6B;QAC7B,6BAA6B;KAC9B;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,aAAa,EAAE,8CAA8C;QAC7D,eAAe,EAAE,gDAAgD;QACjE,kBAAkB,EAAE,6BAA6B;QAEjD,mBAAmB;QACnB,iBAAiB,EAAE,mCAAmC;QACtD,aAAa,EAAE,4BAA4B;QAC3C,iBAAiB,EAAE,4BAA4B;QAC/C,oBAAoB,EAAE,uCAAuC;QAC7D,oBAAoB,EAAE,uCAAuC;QAC7D,mBAAmB,EAAE,kCAAkC;QACvD,iBAAiB,EAAE,yCAAyC;QAC5D,iBAAiB,EAAE,4CAA4C;KAChE;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,qEAAqE;QAClF,QAAQ,EAAE,mEAAmE;QAC7E,OAAO,EAAE,2GAA2G;KACrH;CACF,CAAC"}
|
package/actions/showing.js
CHANGED
|
@@ -17,19 +17,19 @@ exports.showingLanguage = {
|
|
|
17
17
|
// Error messages
|
|
18
18
|
'no_item': "Show what?",
|
|
19
19
|
'no_viewer': "Show it to whom?",
|
|
20
|
-
'not_carrying': "{You} aren't carrying {item}.",
|
|
21
|
-
'viewer_not_visible': "{You} {can't} see {viewer}.",
|
|
22
|
-
'viewer_too_far': "{viewer} is too far away to see clearly.",
|
|
20
|
+
'not_carrying': "{You} aren't carrying {the:item}.",
|
|
21
|
+
'viewer_not_visible': "{You} {can't} see {the:viewer}.",
|
|
22
|
+
'viewer_too_far': "{the:cap:viewer} is too far away to see clearly.",
|
|
23
23
|
'not_actor': "{You} can only show things to people.",
|
|
24
|
-
'self': "{You} {examine} {item} closely.",
|
|
24
|
+
'self': "{You} {examine} {the:item} closely.",
|
|
25
25
|
// Success messages
|
|
26
|
-
'shown': "{You} {show} {item} to {viewer}.",
|
|
27
|
-
'viewer_examines': "{viewer} examines {item} carefully.",
|
|
28
|
-
'viewer_nods': "{viewer} nods.",
|
|
29
|
-
'viewer_impressed': "{viewer} looks impressed.",
|
|
30
|
-
'viewer_unimpressed': "{viewer} seems unimpressed.",
|
|
31
|
-
'viewer_recognizes': "{viewer} recognizes {item}!",
|
|
32
|
-
'wearing_shown': "{You} {show} {viewer} that {you're} wearing {item}."
|
|
26
|
+
'shown': "{You} {show} {the:item} to {the:viewer}.",
|
|
27
|
+
'viewer_examines': "{the:cap:viewer} examines {the:item} carefully.",
|
|
28
|
+
'viewer_nods': "{the:cap:viewer} nods.",
|
|
29
|
+
'viewer_impressed': "{the:cap:viewer} looks impressed.",
|
|
30
|
+
'viewer_unimpressed': "{the:cap:viewer} seems unimpressed.",
|
|
31
|
+
'viewer_recognizes': "{the:cap:viewer} recognizes {the:item}!",
|
|
32
|
+
'wearing_shown': "{You} {show} {the:viewer} that {you're} wearing {the:item}."
|
|
33
33
|
},
|
|
34
34
|
help: {
|
|
35
35
|
description: 'Show objects to other characters without giving them away.',
|
package/actions/showing.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"showing.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/showing.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,eAAe,GAAG;IAC7B,QAAQ,EAAE,mBAAmB;IAE7B,QAAQ,EAAE;QACR,+BAA+B;QAC/B,4BAA4B;QAC5B,kCAAkC;QAClC,iCAAiC;QACjC,kCAAkC;KACnC;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,SAAS,EAAE,YAAY;QACvB,WAAW,EAAE,kBAAkB;QAC/B,cAAc,EAAE
|
|
1
|
+
{"version":3,"file":"showing.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/showing.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,eAAe,GAAG;IAC7B,QAAQ,EAAE,mBAAmB;IAE7B,QAAQ,EAAE;QACR,+BAA+B;QAC/B,4BAA4B;QAC5B,kCAAkC;QAClC,iCAAiC;QACjC,kCAAkC;KACnC;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,SAAS,EAAE,YAAY;QACvB,WAAW,EAAE,kBAAkB;QAC/B,cAAc,EAAE,mCAAmC;QACnD,oBAAoB,EAAE,iCAAiC;QACvD,gBAAgB,EAAE,kDAAkD;QACpE,WAAW,EAAE,uCAAuC;QACpD,MAAM,EAAE,qCAAqC;QAE7C,mBAAmB;QACnB,OAAO,EAAE,0CAA0C;QACnD,iBAAiB,EAAE,iDAAiD;QACpE,aAAa,EAAE,wBAAwB;QACvC,kBAAkB,EAAE,mCAAmC;QACvD,oBAAoB,EAAE,qCAAqC;QAC3D,mBAAmB,EAAE,yCAAyC;QAC9D,eAAe,EAAE,6DAA6D;KAC/E;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,4DAA4D;QACzE,QAAQ,EAAE,yEAAyE;QACnF,OAAO,EAAE,0EAA0E;KACpF;CACF,CAAC"}
|
package/actions/smelling.js
CHANGED
|
@@ -15,23 +15,23 @@ exports.smellingLanguage = {
|
|
|
15
15
|
],
|
|
16
16
|
messages: {
|
|
17
17
|
// Error messages
|
|
18
|
-
'not_visible': "{You} {can't} see {target} to smell it.",
|
|
19
|
-
'too_far': "{target} is too far away to smell.",
|
|
18
|
+
'not_visible': "{You} {can't} see {the:target} to smell it.",
|
|
19
|
+
'too_far': "{the:cap:target} is too far away to smell.",
|
|
20
20
|
// Success messages - environment
|
|
21
21
|
'no_scent': "{You} {don't} smell anything unusual.",
|
|
22
22
|
'room_scents': "The air carries various scents.",
|
|
23
23
|
'food_nearby': "{You} {smell} food nearby.",
|
|
24
24
|
'smoke_detected': "{You} {detect} a faint smell of smoke.",
|
|
25
25
|
// Success messages - specific targets
|
|
26
|
-
'no_particular_scent': "{target} has no particular smell.",
|
|
27
|
-
'food_scent': "{target} smells delicious.",
|
|
28
|
-
'drink_scent': "{target} has a pleasant aroma.",
|
|
29
|
-
'burning_scent': "{target} gives off a smoky smell.",
|
|
30
|
-
'container_food_scent': "{You} {smell} food inside {target}.",
|
|
31
|
-
'musty_scent': "{target} smells a bit musty.",
|
|
32
|
-
'fresh_scent': "{target} smells fresh and clean.",
|
|
26
|
+
'no_particular_scent': "{the:cap:target} has no particular smell.",
|
|
27
|
+
'food_scent': "{the:cap:target} smells delicious.",
|
|
28
|
+
'drink_scent': "{the:cap:target} has a pleasant aroma.",
|
|
29
|
+
'burning_scent': "{the:cap:target} gives off a smoky smell.",
|
|
30
|
+
'container_food_scent': "{You} {smell} food inside {the:target}.",
|
|
31
|
+
'musty_scent': "{the:cap:target} smells a bit musty.",
|
|
32
|
+
'fresh_scent': "{the:cap:target} smells fresh and clean.",
|
|
33
33
|
// Generic smelling
|
|
34
|
-
'smelled': "{You} {smell} {target}.",
|
|
34
|
+
'smelled': "{You} {smell} {the:target}.",
|
|
35
35
|
'smelled_environment': "{You} {sniff} the air."
|
|
36
36
|
},
|
|
37
37
|
help: {
|
package/actions/smelling.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"smelling.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/smelling.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,OAAO;QACP,mBAAmB;QACnB,mBAAmB;QACnB,OAAO;QACP,QAAQ;KACT;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"smelling.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/smelling.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,OAAO;QACP,mBAAmB;QACnB,mBAAmB;QACnB,OAAO;QACP,QAAQ;KACT;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,aAAa,EAAE,6CAA6C;QAC5D,SAAS,EAAE,4CAA4C;QAEvD,iCAAiC;QACjC,UAAU,EAAE,uCAAuC;QACnD,aAAa,EAAE,iCAAiC;QAChD,aAAa,EAAE,4BAA4B;QAC3C,gBAAgB,EAAE,wCAAwC;QAE1D,sCAAsC;QACtC,qBAAqB,EAAE,2CAA2C;QAClE,YAAY,EAAE,oCAAoC;QAClD,aAAa,EAAE,wCAAwC;QACvD,eAAe,EAAE,2CAA2C;QAC5D,sBAAsB,EAAE,yCAAyC;QACjE,aAAa,EAAE,sCAAsC;QACrD,aAAa,EAAE,0CAA0C;QAEzD,mBAAmB;QACnB,SAAS,EAAE,6BAA6B;QACxC,qBAAqB,EAAE,wBAAwB;KAChD;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,0DAA0D;QACvE,QAAQ,EAAE,yCAAyC;QACnD,OAAO,EAAE,8FAA8F;KACxG;CACF,CAAC"}
|
package/actions/switching-off.js
CHANGED
|
@@ -19,19 +19,19 @@ exports.switchingOffLanguage = {
|
|
|
19
19
|
messages: {
|
|
20
20
|
// Error messages
|
|
21
21
|
'no_target': "Switch off what?",
|
|
22
|
-
'not_visible': "{You} {can't} see {target}.",
|
|
23
|
-
'not_reachable': "{You} {can't} reach {target}.",
|
|
24
|
-
'not_switchable': "{target} isn't something {you} can switch off.",
|
|
25
|
-
'already_off': "{target} is already off.",
|
|
22
|
+
'not_visible': "{You} {can't} see {the:target}.",
|
|
23
|
+
'not_reachable': "{You} {can't} reach {the:target}.",
|
|
24
|
+
'not_switchable': "{the:cap:target} isn't something {you} can switch off.",
|
|
25
|
+
'already_off': "{the:cap:target} is already off.",
|
|
26
26
|
// Success messages
|
|
27
|
-
'switched_off': "{You} {switch} off {target}.",
|
|
28
|
-
'light_off': "{You} {switch} off {target}, plunging the area into darkness.",
|
|
29
|
-
'light_off_still_lit': "{You} {switch} off {target}.",
|
|
30
|
-
'device_stops': "{target} powers down with a soft whir.",
|
|
31
|
-
'silence_falls': "{You} {switch} off {target}. Silence falls.",
|
|
32
|
-
'with_sound': "{You} {switch} off {target}. {sound}",
|
|
33
|
-
'door_closes': "{target} switches off and closes.",
|
|
34
|
-
'was_temporary': "{target} switches off (it had {remainingTime} seconds left)."
|
|
27
|
+
'switched_off': "{You} {switch} off {the:target}.",
|
|
28
|
+
'light_off': "{You} {switch} off {the:target}, plunging the area into darkness.",
|
|
29
|
+
'light_off_still_lit': "{You} {switch} off {the:target}.",
|
|
30
|
+
'device_stops': "{the:cap:target} powers down with a soft whir.",
|
|
31
|
+
'silence_falls': "{You} {switch} off {the:target}. Silence falls.",
|
|
32
|
+
'with_sound': "{You} {switch} off {the:target}. {sound}",
|
|
33
|
+
'door_closes': "{the:cap:target} switches off and closes.",
|
|
34
|
+
'was_temporary': "{the:cap:target} switches off (it had {remainingTime} seconds left)."
|
|
35
35
|
},
|
|
36
36
|
help: {
|
|
37
37
|
description: 'Turn off devices, lights, and other switchable objects.',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"switching-off.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/switching-off.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,oBAAoB,GAAG;IAClC,QAAQ,EAAE,yBAAyB;IAEnC,QAAQ,EAAE;QACR,wBAAwB;QACxB,wBAAwB;QACxB,sBAAsB;QACtB,sBAAsB;QACtB,wBAAwB;QACxB,kBAAkB;QAClB,uBAAuB;QACvB,uBAAuB;KACxB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,kBAAkB;QAC/B,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"switching-off.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/switching-off.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,oBAAoB,GAAG;IAClC,QAAQ,EAAE,yBAAyB;IAEnC,QAAQ,EAAE;QACR,wBAAwB;QACxB,wBAAwB;QACxB,sBAAsB;QACtB,sBAAsB;QACtB,wBAAwB;QACxB,kBAAkB;QAClB,uBAAuB;QACvB,uBAAuB;KACxB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,kBAAkB;QAC/B,aAAa,EAAE,iCAAiC;QAChD,eAAe,EAAE,mCAAmC;QACpD,gBAAgB,EAAE,wDAAwD;QAC1E,aAAa,EAAE,kCAAkC;QAEjD,mBAAmB;QACnB,cAAc,EAAE,kCAAkC;QAClD,WAAW,EAAE,mEAAmE;QAChF,qBAAqB,EAAE,kCAAkC;QACzD,cAAc,EAAE,gDAAgD;QAChE,eAAe,EAAE,iDAAiD;QAClE,YAAY,EAAE,0CAA0C;QACxD,aAAa,EAAE,2CAA2C;QAC1D,eAAe,EAAE,sEAAsE;KACxF;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,yDAAyD;QACtE,QAAQ,EAAE,iEAAiE;QAC3E,OAAO,EAAE,uGAAuG;KACjH;CACF,CAAC"}
|
package/actions/switching-on.js
CHANGED
|
@@ -19,18 +19,18 @@ exports.switchingOnLanguage = {
|
|
|
19
19
|
messages: {
|
|
20
20
|
// Error messages
|
|
21
21
|
'no_target': "Switch on what?",
|
|
22
|
-
'not_visible': "{You} {can't} see {target}.",
|
|
23
|
-
'not_reachable': "{You} {can't} reach {target}.",
|
|
24
|
-
'not_switchable': "{target} isn't something {you} can switch on.",
|
|
25
|
-
'already_on': "{target} is already on.",
|
|
26
|
-
'no_power': "{target} has no power source.",
|
|
22
|
+
'not_visible': "{You} {can't} see {the:target}.",
|
|
23
|
+
'not_reachable': "{You} {can't} reach {the:target}.",
|
|
24
|
+
'not_switchable': "{the:cap:target} isn't something {you} can switch on.",
|
|
25
|
+
'already_on': "{the:cap:target} is already on.",
|
|
26
|
+
'no_power': "{the:cap:target} has no power source.",
|
|
27
27
|
// Success messages
|
|
28
|
-
'switched_on': "{You} {switch} on {target}.",
|
|
29
|
-
'light_on': "{You} {switch} on {target}, illuminating the area.",
|
|
30
|
-
'device_humming': "{target} hums to life.",
|
|
31
|
-
'temporary_activation': "{target} switches on temporarily.",
|
|
32
|
-
'with_sound': "{You} {switch} on {target}. {sound}",
|
|
33
|
-
'door_opens': "{target} switches on and opens.",
|
|
28
|
+
'switched_on': "{You} {switch} on {the:target}.",
|
|
29
|
+
'light_on': "{You} {switch} on {the:target}, illuminating the area.",
|
|
30
|
+
'device_humming': "{the:cap:target} hums to life.",
|
|
31
|
+
'temporary_activation': "{the:cap:target} switches on temporarily.",
|
|
32
|
+
'with_sound': "{You} {switch} on {the:target}. {sound}",
|
|
33
|
+
'door_opens': "{the:cap:target} switches on and opens.",
|
|
34
34
|
'illuminates_darkness': "{the:cap:target} switches on, banishing the darkness."
|
|
35
35
|
},
|
|
36
36
|
help: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"switching-on.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/switching-on.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,mBAAmB,GAAG;IACjC,QAAQ,EAAE,wBAAwB;IAElC,QAAQ,EAAE;QACR,uBAAuB;QACvB,uBAAuB;QACvB,qBAAqB;QACrB,qBAAqB;QACrB,sBAAsB;QACtB,mBAAmB;QACnB,sBAAsB;QACtB,sBAAsB;KACvB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,iBAAiB;QAC9B,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"switching-on.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/switching-on.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,mBAAmB,GAAG;IACjC,QAAQ,EAAE,wBAAwB;IAElC,QAAQ,EAAE;QACR,uBAAuB;QACvB,uBAAuB;QACvB,qBAAqB;QACrB,qBAAqB;QACrB,sBAAsB;QACtB,mBAAmB;QACnB,sBAAsB;QACtB,sBAAsB;KACvB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,iBAAiB;QAC9B,aAAa,EAAE,iCAAiC;QAChD,eAAe,EAAE,mCAAmC;QACpD,gBAAgB,EAAE,uDAAuD;QACzE,YAAY,EAAE,iCAAiC;QAC/C,UAAU,EAAE,uCAAuC;QAEnD,mBAAmB;QACnB,aAAa,EAAE,iCAAiC;QAChD,UAAU,EAAE,wDAAwD;QACpE,gBAAgB,EAAE,gCAAgC;QAClD,sBAAsB,EAAE,2CAA2C;QACnE,YAAY,EAAE,yCAAyC;QACvD,YAAY,EAAE,yCAAyC;QACvD,sBAAsB,EAAE,uDAAuD;KAChF;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,wDAAwD;QACrE,QAAQ,EAAE,+DAA+D;QACzE,OAAO,EAAE,kGAAkG;KAC5G;CACF,CAAC"}
|
package/actions/taking-off.js
CHANGED
|
@@ -14,10 +14,10 @@ exports.takingOffLanguage = {
|
|
|
14
14
|
],
|
|
15
15
|
messages: {
|
|
16
16
|
'no_target': "Take off what?",
|
|
17
|
-
'not_wearing': "{You} aren't wearing {item}.",
|
|
18
|
-
'removed': "{You} {take} off {item}.",
|
|
19
|
-
'cant_remove': "{You} {can't} take off {item}.",
|
|
20
|
-
'prevents_removal': "{You}'ll need to take off {blocking} first."
|
|
17
|
+
'not_wearing': "{You} aren't wearing {the:item}.",
|
|
18
|
+
'removed': "{You} {take} off {the:item}.",
|
|
19
|
+
'cant_remove': "{You} {can't} take off {the:item}.",
|
|
20
|
+
'prevents_removal': "{You}'ll need to take off {the:blocking} first."
|
|
21
21
|
},
|
|
22
22
|
help: {
|
|
23
23
|
description: 'Remove worn clothing or accessories.',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taking-off.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/taking-off.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,iBAAiB,GAAG;IAC/B,QAAQ,EAAE,sBAAsB;IAEhC,QAAQ,EAAE;QACR,sBAAsB;QACtB,sBAAsB;QACtB,oBAAoB;QACpB,kBAAkB;KACnB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,gBAAgB;QAC7B,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"taking-off.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/taking-off.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,iBAAiB,GAAG;IAC/B,QAAQ,EAAE,sBAAsB;IAEhC,QAAQ,EAAE;QACR,sBAAsB;QACtB,sBAAsB;QACtB,oBAAoB;QACpB,kBAAkB;KACnB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,gBAAgB;QAC7B,aAAa,EAAE,kCAAkC;QACjD,SAAS,EAAE,8BAA8B;QACzC,aAAa,EAAE,oCAAoC;QACnD,kBAAkB,EAAE,iDAAiD;KACtE;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,sCAAsC;QACnD,QAAQ,EAAE,uDAAuD;QACjE,OAAO,EAAE,+EAA+E;KACzF;CACF,CAAC"}
|
package/actions/taking.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taking.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/taking.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"taking.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/taking.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;CAkC1B,CAAC"}
|
package/actions/taking.js
CHANGED
|
@@ -17,14 +17,17 @@ exports.takingLanguage = {
|
|
|
17
17
|
messages: {
|
|
18
18
|
'no_target': "Take what?",
|
|
19
19
|
'cant_take_self': "{You} {can't} take {yourself}.",
|
|
20
|
-
'already_have': "{You} already {have} {item}.",
|
|
21
|
-
'cant_take_room': "{You} {can't} take {item}.",
|
|
22
|
-
'fixed_in_place': "{item} is fixed in place.",
|
|
20
|
+
'already_have': "{You} already {have} {the:item}.",
|
|
21
|
+
'cant_take_room': "{You} {can't} take {the:item}.",
|
|
22
|
+
'fixed_in_place': "{the:cap:item} is fixed in place.",
|
|
23
23
|
'container_full': "{You're} carrying too much already.",
|
|
24
24
|
'too_heavy': "Your load is too heavy. You will have to leave something behind.",
|
|
25
|
-
'cannot_take': "{You} {can't} take {item}.",
|
|
25
|
+
'cannot_take': "{You} {can't} take {the:item}.",
|
|
26
26
|
'taken': "Taken.",
|
|
27
|
-
'taken_from': "{You} {take} {item} from {container}.",
|
|
27
|
+
'taken_from': "{You} {take} {the:item} from {the:container}.",
|
|
28
|
+
// Multi-take label format: rendered without article per IF convention
|
|
29
|
+
// ("brass lantern: Taken." not "The brass lantern: Taken.").
|
|
30
|
+
// {item} with EntityInfo and no formatter renders value.name — backward compatible.
|
|
28
31
|
'taken_multi': "{item}: Taken."
|
|
29
32
|
},
|
|
30
33
|
help: {
|
package/actions/taking.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taking.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/taking.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,cAAc,GAAG;IAC5B,QAAQ,EAAE,kBAAkB;IAE5B,QAAQ,EAAE;QACR,kBAAkB;QAClB,iBAAiB;QACjB,qBAAqB;QACrB,kBAAkB;QAClB,qBAAqB;QACrB,qBAAqB;KACtB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,YAAY;QACzB,gBAAgB,EAAE,gCAAgC;QAClD,cAAc,EAAE,
|
|
1
|
+
{"version":3,"file":"taking.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/taking.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,cAAc,GAAG;IAC5B,QAAQ,EAAE,kBAAkB;IAE5B,QAAQ,EAAE;QACR,kBAAkB;QAClB,iBAAiB;QACjB,qBAAqB;QACrB,kBAAkB;QAClB,qBAAqB;QACrB,qBAAqB;KACtB;IAED,QAAQ,EAAE;QACR,WAAW,EAAE,YAAY;QACzB,gBAAgB,EAAE,gCAAgC;QAClD,cAAc,EAAE,kCAAkC;QAClD,gBAAgB,EAAE,gCAAgC;QAClD,gBAAgB,EAAE,mCAAmC;QACrD,gBAAgB,EAAE,qCAAqC;QACvD,WAAW,EAAE,kEAAkE;QAC/E,aAAa,EAAE,gCAAgC;QAC/C,OAAO,EAAE,QAAQ;QACjB,YAAY,EAAE,+CAA+C;QAC7D,sEAAsE;QACtE,6DAA6D;QAC7D,oFAAoF;QACpF,aAAa,EAAE,gBAAgB;KAChC;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,iDAAiD;QAC9D,QAAQ,EAAE,kDAAkD;QAC5D,OAAO,EAAE,uFAAuF;KACjG;CACF,CAAC"}
|
package/actions/talking.js
CHANGED
|
@@ -18,27 +18,27 @@ exports.talkingLanguage = {
|
|
|
18
18
|
messages: {
|
|
19
19
|
// Error messages
|
|
20
20
|
'no_target': "Talk to whom?",
|
|
21
|
-
'not_visible': "{You} {can't} see {target}.",
|
|
22
|
-
'too_far': "{target} is too far away for conversation.",
|
|
21
|
+
'not_visible': "{You} {can't} see {the:target}.",
|
|
22
|
+
'too_far': "{the:cap:target} is too far away for conversation.",
|
|
23
23
|
'not_actor': "{You} can only talk to people.",
|
|
24
24
|
'self': "Talking to {yourself} is a sign of madness.",
|
|
25
|
-
'not_available': "{target} doesn't want to talk right now.",
|
|
25
|
+
'not_available': "{the:cap:target} doesn't want to talk right now.",
|
|
26
26
|
// Success messages - general
|
|
27
|
-
'talked': "{You} {greet} {target}.",
|
|
28
|
-
'no_response': "{target} doesn't respond.",
|
|
29
|
-
'acknowledges': "{target} acknowledges {you}.",
|
|
27
|
+
'talked': "{You} {greet} {the:target}.",
|
|
28
|
+
'no_response': "{the:cap:target} doesn't respond.",
|
|
29
|
+
'acknowledges': "{the:cap:target} acknowledges {you}.",
|
|
30
30
|
// Success messages - first meeting
|
|
31
|
-
'first_meeting': "{You} {introduce} {yourself} to {target}.",
|
|
32
|
-
'greets_back': "{target} says, \"Hello there!\"",
|
|
33
|
-
'formal_greeting': "{target} says, \"Good day to you.\"",
|
|
34
|
-
'casual_greeting': "{target} says, \"Hey!\"",
|
|
31
|
+
'first_meeting': "{You} {introduce} {yourself} to {the:target}.",
|
|
32
|
+
'greets_back': "{the:cap:target} says, \"Hello there!\"",
|
|
33
|
+
'formal_greeting': "{the:cap:target} says, \"Good day to you.\"",
|
|
34
|
+
'casual_greeting': "{the:cap:target} says, \"Hey!\"",
|
|
35
35
|
// Success messages - subsequent meetings
|
|
36
|
-
'greets_again': "{target} says, \"Hello again.\"",
|
|
37
|
-
'remembers_you': "{target} says, \"Ah, it's you again.\"",
|
|
38
|
-
'friendly_greeting': "{target} smiles in recognition.",
|
|
36
|
+
'greets_again': "{the:cap:target} says, \"Hello again.\"",
|
|
37
|
+
'remembers_you': "{the:cap:target} says, \"Ah, it's you again.\"",
|
|
38
|
+
'friendly_greeting': "{the:cap:target} smiles in recognition.",
|
|
39
39
|
// Success messages - with topics
|
|
40
|
-
'has_topics': "{target} seems willing to discuss various topics.",
|
|
41
|
-
'nothing_to_say': "{target} has nothing particular to say."
|
|
40
|
+
'has_topics': "{the:cap:target} seems willing to discuss various topics.",
|
|
41
|
+
'nothing_to_say': "{the:cap:target} has nothing particular to say."
|
|
42
42
|
},
|
|
43
43
|
help: {
|
|
44
44
|
description: 'Start a conversation with another character.',
|
package/actions/talking.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"talking.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/talking.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,eAAe,GAAG;IAC7B,QAAQ,EAAE,mBAAmB;IAE7B,QAAQ,EAAE;QACR,mBAAmB;QACnB,gBAAgB;QAChB,oBAAoB;QACpB,sBAAsB;QACtB,iBAAiB;QACjB,wBAAwB;QACxB,qBAAqB;KACtB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,eAAe;QAC5B,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"talking.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/talking.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,eAAe,GAAG;IAC7B,QAAQ,EAAE,mBAAmB;IAE7B,QAAQ,EAAE;QACR,mBAAmB;QACnB,gBAAgB;QAChB,oBAAoB;QACpB,sBAAsB;QACtB,iBAAiB;QACjB,wBAAwB;QACxB,qBAAqB;KACtB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,eAAe;QAC5B,aAAa,EAAE,iCAAiC;QAChD,SAAS,EAAE,oDAAoD;QAC/D,WAAW,EAAE,gCAAgC;QAC7C,MAAM,EAAE,6CAA6C;QACrD,eAAe,EAAE,kDAAkD;QAEnE,6BAA6B;QAC7B,QAAQ,EAAE,6BAA6B;QACvC,aAAa,EAAE,mCAAmC;QAClD,cAAc,EAAE,sCAAsC;QAEtD,mCAAmC;QACnC,eAAe,EAAE,+CAA+C;QAChE,aAAa,EAAE,yCAAyC;QACxD,iBAAiB,EAAE,6CAA6C;QAChE,iBAAiB,EAAE,iCAAiC;QAEpD,yCAAyC;QACzC,cAAc,EAAE,yCAAyC;QACzD,eAAe,EAAE,gDAAgD;QACjE,mBAAmB,EAAE,yCAAyC;QAE9D,iCAAiC;QACjC,YAAY,EAAE,2DAA2D;QACzE,gBAAgB,EAAE,iDAAiD;KACpE;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,8CAA8C;QAC3D,QAAQ,EAAE,uEAAuE;QACjF,OAAO,EAAE,kFAAkF;KAC5F;CACF,CAAC"}
|
package/actions/telling.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"telling.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/telling.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"telling.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/telling.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;CAyC3B,CAAC"}
|
package/actions/telling.js
CHANGED
|
@@ -16,22 +16,23 @@ exports.tellingLanguage = {
|
|
|
16
16
|
// Error messages
|
|
17
17
|
'no_target': "Tell whom?",
|
|
18
18
|
'no_topic': "Tell them about what?",
|
|
19
|
-
'not_visible': "{You} {can't} see {target}.",
|
|
20
|
-
'too_far': "{target} is too far away.",
|
|
19
|
+
'not_visible': "{You} {can't} see {the:target}.",
|
|
20
|
+
'too_far': "{the:cap:target} is too far away.",
|
|
21
21
|
'not_actor': "{You} can only tell things to people.",
|
|
22
|
-
// Success messages - general
|
|
23
|
-
|
|
24
|
-
'
|
|
22
|
+
// Success messages - general. Mid-sentence positions use {the:target}
|
|
23
|
+
// so proper-named NPCs render without an article.
|
|
24
|
+
'told': "{You} {tell} {the:target} about {topic}.",
|
|
25
|
+
'informed': "{You} {inform} {the:target} about {topic}.",
|
|
25
26
|
// Responses - interested
|
|
26
|
-
'interested': "{target} listens with interest.",
|
|
27
|
-
'very_interested': "{target} says, \"Really? Tell me more!\"",
|
|
28
|
-
'grateful': "{target} says, \"Thank you for telling me!\"",
|
|
29
|
-
'already_knew': "{target} says, \"Yes, I'm aware of that.\"",
|
|
27
|
+
'interested': "{the:cap:target} listens with interest.",
|
|
28
|
+
'very_interested': "{the:cap:target} says, \"Really? Tell me more!\"",
|
|
29
|
+
'grateful': "{the:cap:target} says, \"Thank you for telling me!\"",
|
|
30
|
+
'already_knew': "{the:cap:target} says, \"Yes, I'm aware of that.\"",
|
|
30
31
|
// Responses - not interested
|
|
31
|
-
'not_interested': "{target} doesn't seem interested.",
|
|
32
|
-
'bored': "{target} looks bored.",
|
|
33
|
-
'dismissive': "{target} says, \"So what?\"",
|
|
34
|
-
'ignores': "{target} ignores what {you're} saying."
|
|
32
|
+
'not_interested': "{the:cap:target} doesn't seem interested.",
|
|
33
|
+
'bored': "{the:cap:target} looks bored.",
|
|
34
|
+
'dismissive': "{the:cap:target} says, \"So what?\"",
|
|
35
|
+
'ignores': "{the:cap:target} ignores what {you're} saying."
|
|
35
36
|
},
|
|
36
37
|
help: {
|
|
37
38
|
description: 'Tell characters about topics or give them information.',
|
package/actions/telling.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"telling.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/telling.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,eAAe,GAAG;IAC7B,QAAQ,EAAE,mBAAmB;IAE7B,QAAQ,EAAE;QACR,8BAA8B;QAC9B,gCAAgC;QAChC,gCAAgC;QAChC,0BAA0B;KAC3B;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,YAAY;QACzB,UAAU,EAAE,uBAAuB;QACnC,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"telling.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/telling.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,eAAe,GAAG;IAC7B,QAAQ,EAAE,mBAAmB;IAE7B,QAAQ,EAAE;QACR,8BAA8B;QAC9B,gCAAgC;QAChC,gCAAgC;QAChC,0BAA0B;KAC3B;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,YAAY;QACzB,UAAU,EAAE,uBAAuB;QACnC,aAAa,EAAE,iCAAiC;QAChD,SAAS,EAAE,mCAAmC;QAC9C,WAAW,EAAE,uCAAuC;QAEpD,sEAAsE;QACtE,kDAAkD;QAClD,MAAM,EAAE,0CAA0C;QAClD,UAAU,EAAE,4CAA4C;QAExD,yBAAyB;QACzB,YAAY,EAAE,yCAAyC;QACvD,iBAAiB,EAAE,kDAAkD;QACrE,UAAU,EAAE,sDAAsD;QAClE,cAAc,EAAE,oDAAoD;QAEpE,6BAA6B;QAC7B,gBAAgB,EAAE,2CAA2C;QAC7D,OAAO,EAAE,+BAA+B;QACxC,YAAY,EAAE,qCAAqC;QACnD,SAAS,EAAE,gDAAgD;KAC5D;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,wDAAwD;QACrE,QAAQ,EAAE,iFAAiF;QAC3F,OAAO,EAAE,mGAAmG;KAC7G;CACF,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"throwing.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/throwing.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"throwing.d.ts","sourceRoot":"","sources":["../../../../../../repos/sharpee/packages/lang-en-us/src/actions/throwing.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgE5B,CAAC"}
|
package/actions/throwing.js
CHANGED
|
@@ -22,34 +22,38 @@ exports.throwingLanguage = {
|
|
|
22
22
|
messages: {
|
|
23
23
|
// Error messages
|
|
24
24
|
'no_item': "Throw what?",
|
|
25
|
-
'not_holding': "{You} aren't holding {item}.",
|
|
26
|
-
'target_not_visible': "{You} {can't} see {target}.",
|
|
27
|
-
'target_not_here': "{target} isn't here.",
|
|
25
|
+
'not_holding': "{You} aren't holding {the:item}.",
|
|
26
|
+
'target_not_visible': "{You} {can't} see {the:target}.",
|
|
27
|
+
'target_not_here': "{the:cap:target} isn't here.",
|
|
28
28
|
'no_exit': "There's no exit {direction}.",
|
|
29
|
-
'too_heavy': "{item} is too heavy to throw far (weighs {weight}kg).",
|
|
29
|
+
'too_heavy': "{the:cap:item} is too heavy to throw far (weighs {weight}kg).",
|
|
30
30
|
'self': "{You} {can't} throw things at {yourself}.",
|
|
31
31
|
// Success messages - general throw
|
|
32
|
-
'thrown': "{You} {throw} {item}.",
|
|
33
|
-
'thrown_down': "{You} {toss} {item} to the ground.",
|
|
34
|
-
'thrown_gently': "{You} gently {toss} {item}.",
|
|
32
|
+
'thrown': "{You} {throw} {the:item}.",
|
|
33
|
+
'thrown_down': "{You} {toss} {the:item} to the ground.",
|
|
34
|
+
'thrown_gently': "{You} gently {toss} {the:item}.",
|
|
35
35
|
// Success messages - at target
|
|
36
|
-
'thrown_at': "{You} {throw} {item} at {target}.",
|
|
37
|
-
'hits_target': "{You} {throw} {item} at {target}. It hits!",
|
|
38
|
-
'misses_target': "{You} {throw} {item} at {target}, but miss.",
|
|
39
|
-
'bounces_off': "{item} bounces off {target}.",
|
|
40
|
-
'lands_on': "{item} lands on {target}.",
|
|
41
|
-
'lands_in': "{item} lands in {target}.",
|
|
36
|
+
'thrown_at': "{You} {throw} {the:item} at {the:target}.",
|
|
37
|
+
'hits_target': "{You} {throw} {the:item} at {the:target}. It hits!",
|
|
38
|
+
'misses_target': "{You} {throw} {the:item} at {the:target}, but miss.",
|
|
39
|
+
'bounces_off': "{the:cap:item} bounces off {the:target}.",
|
|
40
|
+
'lands_on': "{the:cap:item} lands on {the:target}.",
|
|
41
|
+
'lands_in': "{the:cap:item} lands in {the:target}.",
|
|
42
42
|
// Success messages - directional
|
|
43
|
-
'thrown_direction': "{You} {throw} {item} {direction}.",
|
|
44
|
-
'sails_through': "{item} sails through the exit to the {direction}.",
|
|
43
|
+
'thrown_direction': "{You} {throw} {the:item} {direction}.",
|
|
44
|
+
'sails_through': "{the:cap:item} sails through the exit to the {direction}.",
|
|
45
45
|
// Breaking messages
|
|
46
|
-
'breaks_on_impact': "{item} shatters on impact!",
|
|
47
|
-
'breaks_against': "{item} smashes against {target}!",
|
|
46
|
+
'breaks_on_impact': "{the:cap:item} shatters on impact!",
|
|
47
|
+
'breaks_against': "{the:cap:item} smashes against {the:target}!",
|
|
48
|
+
// ADR-158 exception: hand-written "The fragile" prefix wraps an
|
|
49
|
+
// adjective phrase around the entity, which the {the:cap:…} formatter
|
|
50
|
+
// cannot reproduce. Renders correctly for common nouns; the proper-name
|
|
51
|
+
// edge case ("The fragile Excalibur") is rare in practice.
|
|
48
52
|
'fragile_breaks': "The fragile {item} breaks into pieces.",
|
|
49
53
|
// Target reactions
|
|
50
|
-
'target_ducks': "{target} ducks out of the way.",
|
|
51
|
-
'target_catches': "{target} catches {item}!",
|
|
52
|
-
'target_angry': "{target} doesn't appreciate being hit with {item}."
|
|
54
|
+
'target_ducks': "{the:cap:target} ducks out of the way.",
|
|
55
|
+
'target_catches': "{the:cap:target} catches {the:item}!",
|
|
56
|
+
'target_angry': "{the:cap:target} doesn't appreciate being hit with {the:item}."
|
|
53
57
|
},
|
|
54
58
|
help: {
|
|
55
59
|
description: 'Throw objects at targets, in directions, or just drop them forcefully.',
|
package/actions/throwing.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"throwing.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/throwing.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,mBAAmB;QACnB,+BAA+B;QAC/B,+BAA+B;QAC/B,+BAA+B;QAC/B,kBAAkB;QAClB,8BAA8B;QAC9B,kBAAkB;QAClB,8BAA8B;QAC9B,mBAAmB;QACnB,mBAAmB;QACnB,iBAAiB;KAClB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,SAAS,EAAE,aAAa;QACxB,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"throwing.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/throwing.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,mBAAmB;QACnB,+BAA+B;QAC/B,+BAA+B;QAC/B,+BAA+B;QAC/B,kBAAkB;QAClB,8BAA8B;QAC9B,kBAAkB;QAClB,8BAA8B;QAC9B,mBAAmB;QACnB,mBAAmB;QACnB,iBAAiB;KAClB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,SAAS,EAAE,aAAa;QACxB,aAAa,EAAE,kCAAkC;QACjD,oBAAoB,EAAE,iCAAiC;QACvD,iBAAiB,EAAE,8BAA8B;QACjD,SAAS,EAAE,8BAA8B;QACzC,WAAW,EAAE,+DAA+D;QAC5E,MAAM,EAAE,2CAA2C;QAEnD,mCAAmC;QACnC,QAAQ,EAAE,2BAA2B;QACrC,aAAa,EAAE,wCAAwC;QACvD,eAAe,EAAE,iCAAiC;QAElD,+BAA+B;QAC/B,WAAW,EAAE,2CAA2C;QACxD,aAAa,EAAE,oDAAoD;QACnE,eAAe,EAAE,qDAAqD;QACtE,aAAa,EAAE,0CAA0C;QACzD,UAAU,EAAE,uCAAuC;QACnD,UAAU,EAAE,uCAAuC;QAEnD,iCAAiC;QACjC,kBAAkB,EAAE,uCAAuC;QAC3D,eAAe,EAAE,2DAA2D;QAE5E,oBAAoB;QACpB,kBAAkB,EAAE,oCAAoC;QACxD,gBAAgB,EAAE,8CAA8C;QAChE,gEAAgE;QAChE,sEAAsE;QACtE,wEAAwE;QACxE,2DAA2D;QAC3D,gBAAgB,EAAE,wCAAwC;QAE1D,mBAAmB;QACnB,cAAc,EAAE,wCAAwC;QACxD,gBAAgB,EAAE,sCAAsC;QACxD,cAAc,EAAE,gEAAgE;KACjF;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,wEAAwE;QACrF,QAAQ,EAAE,mFAAmF;QAC7F,OAAO,EAAE,iHAAiH;KAC3H;CACF,CAAC"}
|
package/actions/touching.js
CHANGED
|
@@ -17,29 +17,29 @@ exports.touchingLanguage = {
|
|
|
17
17
|
messages: {
|
|
18
18
|
// Error messages
|
|
19
19
|
'no_target': "Touch what?",
|
|
20
|
-
'not_visible': "{You} {can't} see {target} to touch it.",
|
|
21
|
-
'not_reachable': "{You} {can't} reach {target}.",
|
|
20
|
+
'not_visible': "{You} {can't} see {the:target} to touch it.",
|
|
21
|
+
'not_reachable': "{You} {can't} reach {the:target}.",
|
|
22
22
|
// Success messages - textures
|
|
23
|
-
'feels_normal': "{target} feels as {you}'d expect.",
|
|
24
|
-
'feels_warm': "{target} feels warm to the touch.",
|
|
25
|
-
'feels_hot': "{target} is hot! {You} {pull} {your} hand back quickly.",
|
|
26
|
-
'feels_cold': "{target} feels cold.",
|
|
27
|
-
'feels_soft': "{target} feels soft.",
|
|
28
|
-
'feels_hard': "{target} feels hard and solid.",
|
|
29
|
-
'feels_smooth': "{target} feels smooth.",
|
|
30
|
-
'feels_rough': "{target} feels rough.",
|
|
31
|
-
'feels_wet': "{target} feels damp.",
|
|
23
|
+
'feels_normal': "{the:cap:target} feels as {you}'d expect.",
|
|
24
|
+
'feels_warm': "{the:cap:target} feels warm to the touch.",
|
|
25
|
+
'feels_hot': "{the:cap:target} is hot! {You} {pull} {your} hand back quickly.",
|
|
26
|
+
'feels_cold': "{the:cap:target} feels cold.",
|
|
27
|
+
'feels_soft': "{the:cap:target} feels soft.",
|
|
28
|
+
'feels_hard': "{the:cap:target} feels hard and solid.",
|
|
29
|
+
'feels_smooth': "{the:cap:target} feels smooth.",
|
|
30
|
+
'feels_rough': "{the:cap:target} feels rough.",
|
|
31
|
+
'feels_wet': "{the:cap:target} feels damp.",
|
|
32
32
|
// Success messages - specific objects
|
|
33
|
-
'device_vibrating': "{target} is vibrating slightly.",
|
|
34
|
-
'immovable_object': "{target} is solid and immovable.",
|
|
35
|
-
'liquid_container': "{You} {feel} liquid sloshing inside {target}.",
|
|
33
|
+
'device_vibrating': "{the:cap:target} is vibrating slightly.",
|
|
34
|
+
'immovable_object': "{the:cap:target} is solid and immovable.",
|
|
35
|
+
'liquid_container': "{You} {feel} liquid sloshing inside {the:target}.",
|
|
36
36
|
// Generic touching
|
|
37
|
-
'touched': "{You} {touch} {target}.",
|
|
38
|
-
'touched_gently': "{You} gently {touch} {target}.",
|
|
39
|
-
'poked': "{You} {poke} {target}.",
|
|
40
|
-
'prodded': "{You} {prod} {target}.",
|
|
41
|
-
'patted': "{You} {pat} {target}.",
|
|
42
|
-
'stroked': "{You} {stroke} {target}."
|
|
37
|
+
'touched': "{You} {touch} {the:target}.",
|
|
38
|
+
'touched_gently': "{You} gently {touch} {the:target}.",
|
|
39
|
+
'poked': "{You} {poke} {the:target}.",
|
|
40
|
+
'prodded': "{You} {prod} {the:target}.",
|
|
41
|
+
'patted': "{You} {pat} {the:target}.",
|
|
42
|
+
'stroked': "{You} {stroke} {the:target}."
|
|
43
43
|
},
|
|
44
44
|
help: {
|
|
45
45
|
description: 'Touch objects to discover their texture, temperature, or other tactile properties.',
|
package/actions/touching.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"touching.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/touching.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,mBAAmB;QACnB,kBAAkB;QAClB,iBAAiB;QACjB,oBAAoB;QACpB,kBAAkB;QAClB,kBAAkB;KACnB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,aAAa;QAC1B,aAAa,EAAE,
|
|
1
|
+
{"version":3,"file":"touching.js","sourceRoot":"","sources":["../../../../../../../repos/sharpee/packages/lang-en-us/src/actions/touching.ts"],"names":[],"mappings":";AAAA;;GAEG;;;AAEU,QAAA,gBAAgB,GAAG;IAC9B,QAAQ,EAAE,oBAAoB;IAE9B,QAAQ,EAAE;QACR,mBAAmB;QACnB,kBAAkB;QAClB,iBAAiB;QACjB,oBAAoB;QACpB,kBAAkB;QAClB,kBAAkB;KACnB;IAED,QAAQ,EAAE;QACR,iBAAiB;QACjB,WAAW,EAAE,aAAa;QAC1B,aAAa,EAAE,6CAA6C;QAC5D,eAAe,EAAE,mCAAmC;QAEpD,8BAA8B;QAC9B,cAAc,EAAE,2CAA2C;QAC3D,YAAY,EAAE,2CAA2C;QACzD,WAAW,EAAE,iEAAiE;QAC9E,YAAY,EAAE,8BAA8B;QAC5C,YAAY,EAAE,8BAA8B;QAC5C,YAAY,EAAE,wCAAwC;QACtD,cAAc,EAAE,gCAAgC;QAChD,aAAa,EAAE,+BAA+B;QAC9C,WAAW,EAAE,8BAA8B;QAE3C,sCAAsC;QACtC,kBAAkB,EAAE,yCAAyC;QAC7D,kBAAkB,EAAE,0CAA0C;QAC9D,kBAAkB,EAAE,mDAAmD;QAEvE,mBAAmB;QACnB,SAAS,EAAE,6BAA6B;QACxC,gBAAgB,EAAE,oCAAoC;QACtD,OAAO,EAAE,4BAA4B;QACrC,SAAS,EAAE,4BAA4B;QACvC,QAAQ,EAAE,2BAA2B;QACrC,SAAS,EAAE,8BAA8B;KAC1C;IAED,IAAI,EAAE;QACJ,WAAW,EAAE,oFAAoF;QACjG,QAAQ,EAAE,+CAA+C;QACzD,OAAO,EAAE,sHAAsH;KAChI;CACF,CAAC"}
|