diff options
-rw-r--r-- | data/maps/junior.yaml | 3 | ||||
-rw-r--r-- | data/maps/lobby.yaml | 3 | ||||
-rw-r--r-- | test-client/tiles.ts | 1 |
3 files changed, 5 insertions, 2 deletions
diff --git a/data/maps/junior.yaml b/data/maps/junior.yaml index e925acfe..91f61435 100644 --- a/data/maps/junior.yaml +++ b/data/maps/junior.yaml @@ -21,7 +21,7 @@ map: - "''█ctc.ctc.ctc.ctc.ctc█**" - "''▒.....c.............█''" - "'*█c...c...████ww██dd██*'" - - "*'█tc.ctc..█sCC..f⌷..L█''" + - "*'█tc.ctc..█sCC..fb..L█''" - "''▒c...c...w....~....R█'*" - "*'█c.......w.⌷⌷⌷⌷⌷⌷..T█*'" - "'*█tc......w.........F█'*" @@ -41,6 +41,7 @@ tiles: "s": sink "o": oven "S": stove + "b": book "C": cuttingboard "R": raw-steak-crate "T": tomato-crate diff --git a/data/maps/lobby.yaml b/data/maps/lobby.yaml index 1a727577..2785e3e0 100644 --- a/data/maps/lobby.yaml +++ b/data/maps/lobby.yaml @@ -17,7 +17,7 @@ map: - "'''''*'''*''''" - "'''*''''*'*'*'" - "''██████████*'" - - "''█...ctc.c█**" + - "''█b..ctc.c█**" - "''█c...c.cT█''" - "'*█tc.....c█*'" - "*'█c..~..ct█''" @@ -36,6 +36,7 @@ tiles: "c": chair "~": floor ".": floor + "b": book "'": grass "*": tree "█": wall diff --git a/test-client/tiles.ts b/test-client/tiles.ts index f9db8229..046d8297 100644 --- a/test-client/tiles.ts +++ b/test-client/tiles.ts @@ -177,6 +177,7 @@ export const TILES: { [key: string]: Component[] } = { "sink": [base("rgb(131, 129, 161)", "rgb(177, 174, 226)", 0.2)], "oven": [base("rgb(241, 97, 61)", "rgb(109, 84, 84)", 0.3)], "stove": [...counter, circle(0.4, "#444", "#999")], + "book": [...counter, rect(0.2, "rgb(88, 44, 7)")], "flour-crate": crate("flour"), "raw-steak-crate": crate("raw-steak"), |