-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json.bak
95 lines (95 loc) · 2.33 KB
/
config.json.bak
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"init_parameter": {
"square_lenght": 40,
"number_of_squares": 7,
"spacing": 10,
"number_of_cows": 1,
"hunger_cow": 40,
"thirst_cow": 20,
"milk_cow": 0,
"breeder_salary": 100,
"number_ticks": 50
},
"victory_condition": {
"breeder_salary": 1000,
"milkings_time": 2,
"thirst_to_milk": 80,
"hunger_to_milk": 80
},
"cow_evolution": {
"hunger_evolution": 10,
"thirst_evolution": 5,
"add_hunger": 20,
"add_thirst": 100,
"milk_evolution": 10,
"breeder_salary_evolution": 10
},
"algorithm": {
"to_farm": "astar"
},
"analysis": {
"show_analysis": false
},
"food_value": [
{
"Type of Food": "Grass",
"Food Value": 0,
"Milk Value": 50,
"Food Lifetime": 1,
"Time to Recovery": 5,
"Mix": 0.2,
"Quality": 0.8,
"Color": "green"
},
{
"Type of Food": "Corn",
"Food Value": 10,
"Milk Value": 10,
"Food Lifetime": 2,
"Time to Recovery": 5,
"Mix": 0.2,
"Quality": 0.2,
"Color": "yellow"
},
{
"Type of Food": "Soybean",
"Food Value": 50,
"Milk Value": 45,
"Food Lifetime": 5,
"Time to Recovery": 5,
"Mix": 0.2,
"Quality": 0.65,
"Color": "brown"
},
{
"Type of Food": "Fodder",
"Food Value": 30,
"Milk Value": 30,
"Food Lifetime": 3,
"Time to Recovery": 5,
"Mix": 0.2,
"Quality": 0.3,
"Color": "orange"
},
{
"Type of Food": "Cereal",
"Food Value": 20,
"Milk Value": 35,
"Food Lifetime": 3,
"Time to Recovery": 5,
"Mix": 0.15,
"Quality": 0.4,
"Color": "lightgray"
},
{
"Type of Food": "Water",
"Food Value": 0,
"Milk Value": 0,
"Food Lifetime": 1,
"Time to Recovery": 5,
"Mix": 0.05,
"Quality": 1,
"Color": "blue"
}
]
}