Elin Modding Docs Doc
Loading...
Searching...
No Matches
PlantData.cs
1using System;
2using Newtonsoft.Json;
3
4// Token: 0x0200068B RID: 1675
5public class PlantData
6{
7 // Token: 0x04001A90 RID: 6800
8 [JsonProperty]
9 public Thing seed;
10
11 // Token: 0x04001A91 RID: 6801
12 [JsonProperty]
13 public int water;
14
15 // Token: 0x04001A92 RID: 6802
16 [JsonProperty]
17 public int fert;
18
19 // Token: 0x04001A93 RID: 6803
20 [JsonProperty]
21 public int size;
22}
Definition Thing.cs:10