forked from reitowo/ArcaeaParty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClasses.cs
52 lines (51 loc) · 1.27 KB
/
Classes.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ArcaeaParty
{
[Serializable]
public class RewardItem
{
public string id;
public string type;
}
[Serializable]
public class Reward
{
public RewardItem[] items;
public int position;
}
[Serializable]
public class Step
{
public int position;
public double capture;
public string restrict_id;
public string restrict_type;
}
[Serializable]
public class WorldMap
{
public string map_id;
public int chapter;
public long available_from;
public long available_to;
public bool is_repeatable;
public string require_id;
public string require_type;
public int require_value;
public string coordinate;
public int step_count;
public int stamina_cost;
public string custom_bg;
public bool is_available;
public bool is_legacy;
public int curr_position;
public double curr_capture;
public bool is_locked;
public Reward[] rewards;
public Step[] steps;
}
}