-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.py
58 lines (48 loc) · 1009 Bytes
/
config.example.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# -*- coding: utf-8 -*-
SERVER_HOST = "SERVER_HOST"
SERVER_PORT = 21025
USERNAME = "USERNAME"
PASSWORD = "PASSWORD"
DB_HOST = "DB_HOST"
DB_PORT = 3306
DB_USERNAME = "DB_USERNAME"
DB_PASSWORD = "DB_PASSWORD"
DB_NAME = "DB_NAME"
SCRIPT_PATH = "C:/Users/USERNAME/AppData/Local/Screeps/scripts/127_0_0_1___21025"
BRANCH_NAME = "BRANCH_NAME"
CHAR_MAP = {
"plain": ".",
"wall": "#",
"swamp": ":",
"source": "$",
"mineral": "&",
"creep": "@",
"tombstone": "M",
"energy": "e",
"controller": "C",
"road": "o",
"container": "N",
"extension": "X",
"rampart": "P",
"tower": "T",
"storage": "R",
"link": "I",
"extractor": "E",
"lab": "L",
"terminal": "Z",
"spawn": "W",
"observer": "O",
"powerSpawn": "P",
"constructionSite": "S",
"ruin": "U",
}
CHAR_BODY_PART = {
"move": "M",
"work": "W",
"carry": "C",
"attack": "A",
"range_attack": "R",
"heal": "H",
"claim": "L",
"tough": "T",
}