town -> woods -> one floor of dungeon; infinite dungeon elsewhere

just trying things out.
This commit is contained in:
Llywelwyn 2023-08-27 03:43:25 +01:00
parent 486807fc84
commit 02be487334
10 changed files with 72 additions and 18 deletions

View file

@ -2,5 +2,9 @@ pub const ID_PREVIOUS_LEVEL: i32 = -5;
pub const ID_NEXT_LEVEL: i32 = -6;
pub const ID_OVERMAP: i32 = 1;
pub const ID_TOWN: i32 = 10;
pub const ID_TOWN2: i32 = ID_TOWN + 1;
pub const ID_TOWN3: i32 = ID_TOWN + 2;
pub const ID_INFINITE: i32 = 1000;

View file

@ -82,3 +82,5 @@ pub const TO_OVERMAP_GLYPH: char = '<';
pub const TO_OVERMAP_COLOUR: (u8, u8, u8) = (205, 127, 50);
pub const TO_TOWN_GLYPH: char = 'o';
pub const TO_TOWN_COLOUR: (u8, u8, u8) = (205, 127, 50);
pub const TO_INFINITE_GLYPH: char = '*';
pub const TO_INFINITE_COLOUR: (u8, u8, u8) = (205, 127, 50);