From 9309e9c838a952b8d91a6ee711822028469edce7 Mon Sep 17 00:00:00 2001 From: Techokami Date: Fri, 17 Dec 2021 19:04:59 -0500 Subject: [PATCH 1/2] Fix missing tooltips in editor --- js/editor/editordefs.js | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/js/editor/editordefs.js b/js/editor/editordefs.js index 0f3f04b..99e6bd4 100644 --- a/js/editor/editordefs.js +++ b/js/editor/editordefs.js @@ -515,7 +515,7 @@ export const TILE_DESCRIPTIONS = { name: "Ice corner", desc: "Acts like ice, but turns anything sliding on it around the corner. Edges act like thin walls.", }, - force_floor_n: { + force_floor_s: { name: "Force floor", desc: "Slides anything on it in the indicated direction, unless it has suction boots. Players may attempt to step off, but not on their first slide. No effect on ghosts.", }, @@ -896,6 +896,18 @@ export const TILE_DESCRIPTIONS = { name: "Red gate", desc: "Requires a red key. Unlike doors, may be placed on top of other terrain, and any actor with the key may unlock it.", }, + gate_blue: { + name: "Blue gate", + desc: "Requires a blue key. Unlike doors, may be placed on top of other terrain, and any actor with the key may unlock it.", + }, + gate_yellow: { + name: "Yellow gate", + desc: "Requires a yellow key. Unlike doors, may be placed on top of other terrain, and any actor with the key may unlock it.", + }, + gate_green: { + name: "Green gate", + desc: "Requires a green key. Unlike doors, may be placed on top of other terrain, and any actor with the key may unlock it.", + }, sand: { name: "Sand", desc: "Anything walking on it moves at half speed. Stops all blocks.", From 4ac01a403fde2c5ee0cadd3b4ad15ff21fa3a2d9 Mon Sep 17 00:00:00 2001 From: Techokami Date: Sat, 18 Dec 2021 23:54:43 -0500 Subject: [PATCH 2/2] One more missed tooltip --- js/editor/editordefs.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/editor/editordefs.js b/js/editor/editordefs.js index 99e6bd4..b78c6b4 100644 --- a/js/editor/editordefs.js +++ b/js/editor/editordefs.js @@ -976,6 +976,10 @@ export const TILE_DESCRIPTIONS = { name: "Sokoban wall", desc: "Acts like wall. Turns to floor while all sokoban buttons of the same color are pressed.", }, + one_way_walls: { + name: "One-way wall", + desc: "Similar to a thin wall, but can be passed through one side only.", + } };