@@ -43,27 +43,35 @@ public class DotaSchemaPrefabCapability
4343 [ JsonConverter ( typeof ( StringToBoolJsonConverter ) ) ]
4444 [ JsonProperty ( "nameable" ) ]
4545 public bool Nameable { get ; set ; }
46+
4647 [ JsonConverter ( typeof ( StringToBoolJsonConverter ) ) ]
4748 [ JsonProperty ( "can_have_sockets" ) ]
4849 public bool CanHaveSockets { get ; set ; }
50+
4951 [ JsonConverter ( typeof ( StringToBoolJsonConverter ) ) ]
5052 [ JsonProperty ( "gems_can_be_extracted" ) ]
5153 public bool GemsCanBeExtracted { get ; set ; }
54+
5255 [ JsonConverter ( typeof ( StringToBoolJsonConverter ) ) ]
5356 [ JsonProperty ( "can_gift_wrap" ) ]
5457 public bool CanGiftWrap { get ; set ; }
58+
5559 [ JsonConverter ( typeof ( StringToBoolJsonConverter ) ) ]
5660 [ JsonProperty ( "usable_gc" ) ]
5761 public bool UsableGC { get ; set ; }
62+
5863 [ JsonConverter ( typeof ( StringToBoolJsonConverter ) ) ]
5964 [ JsonProperty ( "usable_out_of_game" ) ]
6065 public bool UsableOutOfGame { get ; set ; }
66+
6167 [ JsonConverter ( typeof ( StringToBoolJsonConverter ) ) ]
6268 [ JsonProperty ( "decodable" ) ]
6369 public bool Decodable { get ; set ; }
70+
6471 [ JsonConverter ( typeof ( StringToBoolJsonConverter ) ) ]
6572 [ JsonProperty ( "usable" ) ]
6673 public bool Usable { get ; set ; }
74+
6775 [ JsonConverter ( typeof ( StringToBoolJsonConverter ) ) ]
6876 [ JsonProperty ( "is_gem" ) ]
6977 public bool IsGem { get ; set ; }
@@ -72,26 +80,37 @@ public class DotaSchemaPrefabCapability
7280 public class DotaSchemaPrefab
7381 {
7482 public string Type { get ; set ; }
83+
7584 [ JsonProperty ( "item_type_name" ) ]
7685 public string TypeName { get ; set ; }
86+
7787 [ JsonProperty ( "item_class" ) ]
7888 public string Class { get ; set ; }
89+
7990 [ JsonProperty ( "item_name" ) ]
8091 public string Name { get ; set ; }
92+
8193 [ JsonProperty ( "item_slot" ) ]
8294 public string Slot { get ; set ; }
95+
8396 [ JsonProperty ( "item_quality" ) ]
8497 public string Quality { get ; set ; }
98+
8599 [ JsonProperty ( "item_rarity" ) ]
86100 public string Rarity { get ; set ; }
101+
87102 [ JsonProperty ( "min_ilevel" ) ]
88103 public string MinItemLevel { get ; set ; }
104+
89105 [ JsonProperty ( "max_ilevel" ) ]
90106 public string MaxItemLevel { get ; set ; }
107+
91108 [ JsonProperty ( "image_inventory_size_w" ) ]
92109 public string ImageInventorySizeWidth { get ; set ; }
110+
93111 [ JsonProperty ( "image_inventory_size_h" ) ]
94112 public string ImageInventorySizeHeight { get ; set ; }
113+
95114 [ JsonProperty ( "capabilities" ) ]
96115 public DotaSchemaPrefabCapability Capabilities { get ; set ; }
97116 }
0 commit comments