DolphinNie commited on
Commit
ac433fe
·
1 Parent(s): 1db6152

update README

Browse files
Files changed (1) hide show
  1. README.md +27 -1
README.md CHANGED
@@ -4,4 +4,30 @@ tags:
4
  - code
5
  size_categories:
6
  - 10K<n<100K
7
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  - code
5
  size_categories:
6
  - 10K<n<100K
7
+ ---
8
+
9
+ # Brogue Map Dataset
10
+
11
+ This is the Map dataset from the open-sourced game [Brogue](https://github.com/tmewett/BrogueCE).
12
+
13
+ Each map is stored in a `.csv` file. The map is a `(32x32)` array, which is the map size.
14
+
15
+ Each cell in the array is a `int` number ranged from 0 to 13, which represented 14 tiles.
16
+
17
+ ```json
18
+ "environment": {
19
+ "G_NONE": 0,
20
+ "G_GROUND": 1,
21
+ "G_SAND": 2,
22
+ "G_WATER": 3,
23
+ "G_BOG": 4,
24
+ "G_LAVA": 5,
25
+ "G_ICE": 6,
26
+ "G_GRASS": 7,
27
+ "G_FUNGUS": 8,
28
+ "G_ASHES": 9,
29
+ "G_STONE": 10,
30
+ "G_CRYSTAL": 11,
31
+ "G_FIRE": 12,
32
+ "G_BRIDGE": 13
33
+ ```