blob: e6092099e97e48110faa30f4044eddea3ccef8f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/usr/bin/env python3
def get_env():
envs = []
screen = {}
# Variables
screen["Algen"] = {"text": "Algen", "position": (100, 100)}
screen["AlgenVar"] = {"text": "1", "position": (100, 200)}
screen["Mineralien"] = {"text": "Mineralien", "position": (200, 100)}
screen["MineralienVar"] = {"text": "2", "position": (200, 200)}
screen["Gifte"] = {"text": "Gifte", "position": (300, 100)}
screen["Sandstein"] = {"text": "Sandstein", "position": (400, 100)}
envs.append(screen)
return envs
|