Files
basegame-vcko/constants.py

17 lines
492 B
Python

class Constants:
green = (106, 171, 115)
red = (219, 92, 92)
server_host = '192.168.1.99'
# host = "lukesau.com"
host = "127.0.1.1"
port = 8328
text_format = "utf-8"
small_window_size = (300, 150)
medium_window_size = (600, 400)
large_window_size = (1440, 900)
header_size = 512
buffer_size = 4096
encoding = "utf-8"
areas = ['Hills', 'Ruins', 'Forest', 'Valley', 'Mountains']
types = ['Minion', 'Titan', 'Warden', 'Boss', 'Beast']