Skip to content

Commit 16d8feb

Browse files
committed
add teams config
1 parent 50edabe commit 16d8feb

File tree

1 file changed

+101
-0
lines changed

1 file changed

+101
-0
lines changed
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
{
2+
"initial_max_team_size": 30,
3+
"max_team_size": 50,
4+
"allow_multiple_teams": false,
5+
"wallet": {
6+
"currencies": {
7+
"TeamCoins": 0
8+
}
9+
},
10+
"stats": {
11+
"stats_public": {
12+
"wins": { "value": 0 },
13+
"level": { "value": 1 },
14+
"totalScore": { "value": 0 }
15+
},
16+
"stats_private": {
17+
"internal_rating": { "value": 1000 }
18+
}
19+
},
20+
"gifts": {
21+
"gifts": {
22+
"daily_gift": {
23+
"name": "Daily Team Gift",
24+
"description": "Contribute together for rewards!",
25+
"category": "daily",
26+
"max_count": 100,
27+
"max_contributor_count": 5,
28+
"reset_schedule": "0 0 * * *",
29+
"duration_sec": 86400,
30+
"contribution_cost": {
31+
"currencies": {
32+
"TeamCoins": { "min": 10 }
33+
}
34+
},
35+
"contribution_reward": {
36+
"guaranteed": {
37+
"currencies": {
38+
"TeamCoins": { "min": 5 }
39+
}
40+
}
41+
},
42+
"rewards": [
43+
{
44+
"min_count": 25,
45+
"contributor_reward": {
46+
"guaranteed": {
47+
"currencies": {
48+
"TeamCoins": { "min": 50 }
49+
}
50+
}
51+
},
52+
"noncontributor_reward": {
53+
"guaranteed": {
54+
"currencies": {
55+
"TeamCoins": { "min": 25 }
56+
}
57+
}
58+
}
59+
},
60+
{
61+
"min_count": 50,
62+
"contributor_reward": {
63+
"guaranteed": {
64+
"currencies": {
65+
"TeamCoins": { "min": 100 }
66+
}
67+
}
68+
},
69+
"noncontributor_reward": {
70+
"guaranteed": {
71+
"currencies": {
72+
"TeamCoins": { "min": 50 }
73+
}
74+
}
75+
}
76+
},
77+
{
78+
"min_count": 100,
79+
"contributor_reward": {
80+
"guaranteed": {
81+
"currencies": {
82+
"TeamCoins": { "min": 200 }
83+
}
84+
}
85+
},
86+
"noncontributor_reward": {
87+
"guaranteed": {
88+
"currencies": {
89+
"TeamCoins": { "min": 100 }
90+
}
91+
}
92+
}
93+
}
94+
]
95+
}
96+
}
97+
},
98+
"reward_mailbox": {
99+
"max_size": 100
100+
}
101+
}

0 commit comments

Comments
 (0)