Skip to content

Commit

Permalink
Update for new steam version. Added new items.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregory Brutsche committed Sep 7, 2020
1 parent 2f130eb commit 695dd7d
Show file tree
Hide file tree
Showing 24 changed files with 511 additions and 23 deletions.
1 change: 1 addition & 0 deletions Const-Writer/Const-Writer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>ItemNames.Designer.cs</LastGenOutput>
<CustomToolNamespace>Save_Editor.Resources</CustomToolNamespace>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
10 changes: 10 additions & 0 deletions Const-Writer/Resources/Assets.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Const-Writer/Resources/Assets.resx
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@
<data name="journal" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\..\resources\json\journal.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="languages" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\..\resources\json\languages.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="maps" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\..\resources\json\maps.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
Expand Down
70 changes: 70 additions & 0 deletions Const-Writer/Resources/ItemNames.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Const-Writer/Resources/ItemNames.resx
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,15 @@
<data name="special_challenge_badge" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\..\resources\strings\items\special-challenge-badge.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
<data name="special_charm_cosmic" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\..\resources\strings\items\special-charm-cosmic.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
<data name="special_charm_energy" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\..\resources\strings\items\special-charm-energy.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
<data name="special_charm_health" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\..\resources\strings\items\special-charm-health.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
<data name="special_discount_voucher" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\..\resources\strings\items\special-discount-voucher.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
Expand Down
2 changes: 2 additions & 0 deletions Data.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public static class Data {
public static readonly Dictionary<int, string> SKILL_NAMES_BY_ID = new Dictionary<int, string>();
public static readonly List<string> AVATARS;
public static readonly List<string> PET_AVATARS;
public static readonly List<string> LANGUAGES;

private static readonly TextInfo TEXT_INFO = new CultureInfo("en-US", false).TextInfo;

Expand Down Expand Up @@ -50,6 +51,7 @@ static Data() {
AVATARS = JsonConvert.DeserializeObject<List<string>>(Encoding.UTF8.GetString(Assets.avatars));
PET_AVATARS = JsonConvert.DeserializeObject<List<string>>(Encoding.UTF8.GetString(Assets.pets));
PET_AVATARS.Insert(0, "");
LANGUAGES = JsonConvert.DeserializeObject<Dictionary<string, object>>(Encoding.UTF8.GetString(Assets.languages)).Keys.ToList();
}
}
}
10 changes: 10 additions & 0 deletions Resources/Assets.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Resources/Assets.resx
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@
<data name="journal" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>json\journal.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="languages" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Json\languages.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="maps" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>json\maps.json;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
Expand Down
70 changes: 70 additions & 0 deletions Resources/ItemNames.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions Resources/ItemNames.resx
Original file line number Diff line number Diff line change
Expand Up @@ -577,6 +577,15 @@
<data name="special_challenge_badge" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>strings\items\special-challenge-badge.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
<data name="special_charm_cosmic" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Strings\Items\special-charm-cosmic.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
<data name="special_charm_energy" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Strings\Items\special-charm-energy.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
<data name="special_charm_health" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Strings\Items\special-charm-health.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
<data name="special_discount_voucher" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>strings\items\special-discount-voucher.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value>
</data>
Expand Down
12 changes: 11 additions & 1 deletion Resources/Json/avatars.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,15 @@
"male-classic",
"female-classic",
"male-micromon",
"female-micromon"
"female-micromon",
"male-0020",
"male-0021",
"male-0022",
"male-0023",
"male-0024",
"female-0020",
"female-0021",
"female-0022",
"female-0023",
"female-0024"
]
30 changes: 30 additions & 0 deletions Resources/Json/crafters.json
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,36 @@
"shard-electric": 8,
"shard-psychic": 0,
"shard-ghost": 4
},
"core-synergy-low": {
"shard-fire": 1,
"shard-water": 1,
"shard-wind": 1,
"shard-plant": 1,
"shard-mineral": 1,
"shard-electric": 1,
"shard-psychic": 1,
"shard-ghost": 1
},
"core-synergy-medium": {
"shard-fire": 3,
"shard-water": 3,
"shard-wind": 3,
"shard-plant": 3,
"shard-mineral": 3,
"shard-electric": 3,
"shard-psychic": 3,
"shard-ghost": 3
},
"core-synergy-high": {
"shard-fire": 5,
"shard-water": 5,
"shard-wind": 5,
"shard-plant": 5,
"shard-mineral": 5,
"shard-electric": 5,
"shard-psychic": 5,
"shard-ghost": 5
}
}
},
Expand Down
16 changes: 16 additions & 0 deletions Resources/Json/distribution.json
Original file line number Diff line number Diff line change
Expand Up @@ -2858,6 +2858,22 @@
},
"268": {
"1": [
"brauncer",
"sunknight",
"roclas",
"cuisizle",
"grath",
"holoch"
],
"2": [
"brauncer",
"sunknight",
"roclas",
"cuisizle",
"grath",
"holoch"
],
"3": [
"brauncer",
"sunknight",
"roclas",
Expand Down
36 changes: 36 additions & 0 deletions Resources/Json/items.json
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,24 @@
"effectvalues": [ "20" ],
"serialization": "1161"
},
"core-synergy-low": {
"category": "core",
"effectvalues": [ "8" ],
"serialization": "2093",
"folder":"items-patch-4"
},
"core-synergy-medium": {
"category": "core",
"effectvalues": [ "16" ],
"serialization": "1490",
"folder":"items-patch-4"
},
"core-synergy-high": {
"category": "core",
"effectvalues": [ "25" ],
"serialization": "7107",
"folder":"items-patch-4"
},
"core-greed-low": {
"category": "core",
"effectvalues": [ "3" ],
Expand Down Expand Up @@ -889,6 +907,24 @@
"effectvalues": [ ],
"serialization": "1208"
},
"special-charm-cosmic": {
"category": "key",
"effectvalues": [ 50 ],
"serialization": "5398",
"folder":"items-patch-4"
},
"special-charm-health": {
"category": "key",
"effectvalues": [ 3 ],
"serialization": "5516",
"folder":"items-patch-4"
},
"special-charm-energy": {
"category": "key",
"effectvalues": [ 3 ],
"serialization": "5916",
"folder":"items-patch-4"
},



Expand Down
Loading

0 comments on commit 695dd7d

Please sign in to comment.