aboutsummaryrefslogtreecommitdiff
path: root/internal/admin/static/cardeditor.js
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-14 01:36:31 -0400
committerhistoria <[not public]>2026-07-14 01:36:31 -0400
commitd72957499f1e25741b8f7a91746fbe132fa68161 (patch)
tree115302045c5bce0b62b812bbfcbe3737c9163bb5 /internal/admin/static/cardeditor.js
parent5a6986a8c539364b7a166abdfb608b3cc00ecb3b (diff)
downloadthehouseoficarus-d72957499f1e25741b8f7a91746fbe132fa68161.tar.gz
feat(admin): copy paste rooms on map, swap rooms with adjacent rooms
Diffstat (limited to 'internal/admin/static/cardeditor.js')
-rw-r--r--internal/admin/static/cardeditor.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/admin/static/cardeditor.js b/internal/admin/static/cardeditor.js
index cf3a8b7..83eed2e 100644
--- a/internal/admin/static/cardeditor.js
+++ b/internal/admin/static/cardeditor.js
@@ -682,6 +682,10 @@ function ced_renderTagHelp(type) {
h += 'Message fields support template variables:<br>%i1 = first ingredient name<br>%i2 = second ingredient name<br>%n = output item name.<br>Color tags are also supported: {NN}text{/} where NN is a hex color index (00–FF).';
} else if (type === 'gather') {
h += 'Message fields support template variables: {name} = object name.<br/>Color tags are also supported: {NN}text{/} where NN is a hex color index (00–FF).';
+ } else if (type === 'trigger') {
+ h += 'Supports %p (player) %v (flag value) and color tags: {NN}text{/} where NN = hex index 00–FF (bold, dim, underline).';
+ } else if (type === 'talk') {
+ h += 'Supports color tags: {NN}text{/} where NN = hex index 00–FF (bold, dim, underline). Surround NPC speech in "quotes" for automatic dialog color.';
}
h += '</div>';
return h;