From d72957499f1e25741b8f7a91746fbe132fa68161 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Tue, 14 Jul 2026 01:36:31 -0400 Subject: feat(admin): copy paste rooms on map, swap rooms with adjacent rooms --- internal/admin/static/cardeditor.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'internal/admin/static/cardeditor.js') 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:
%i1 = first ingredient name
%i2 = second ingredient name
%n = output item name.
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.
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 += ''; return h; -- cgit v1.2.3