Commit c20076a4 authored by keyongyu's avatar keyongyu

2.4.3.1 pack.db

parent 95965d12
...@@ -230,3 +230,5 @@ pip-log.txt ...@@ -230,3 +230,5 @@ pip-log.txt
.mr.developer.cfg .mr.developer.cfg
/win32/*.cdb /win32/*.cdb
/win32/data/history.txt /win32/data/history.txt
/win32/*.mse-set
/win32/set
...@@ -40,8 +40,7 @@ public CardPack(long id) ...@@ -40,8 +40,7 @@ public CardPack(long id)
if(rarity.Equals("rare") ||rarity.Equals("normal rare")) if(rarity.Equals("rare") ||rarity.Equals("normal rare"))
{ {
return "rare"; return "rare";
} }else if(rarity.Contains("parallel") || rarity.Contains("Kaiba") || rarity.Contains("duel terminal"))
else if(rarity.Contains("parallel") || rarity.Contains("Kaiba") || rarity.Contains("duel terminal"))
{ {
return "parallel rare"; return "parallel rare";
} }
...@@ -89,7 +88,10 @@ public CardPack(long id) ...@@ -89,7 +88,10 @@ public CardPack(long id)
{ {
return "millenium rare"; return "millenium rare";
} }
return this.rarity.Split('/')[0]; if(this.rarity.Contains("/")){
return this.rarity.Split('/')[0];
}
return this.rarity;
} }
} }
} }
...@@ -278,7 +278,7 @@ public string[] GetTypes(Card c) ...@@ -278,7 +278,7 @@ public string[] GetTypes(Card c)
{ {
//卡片类型,效果1,效果2,效果3 //卡片类型,效果1,效果2,效果3
string[] types = new string[] { string[] types = new string[] {
MseCardType.CARD_NORMAL, "", "", "", "" }; MseCardType.CARD_NORMAL, "", "", "", ""};
if (c.IsType(CardType.TYPE_MONSTER)) if (c.IsType(CardType.TYPE_MONSTER))
{//卡片类型和第1效果 {//卡片类型和第1效果
if(c.IsType(CardType.TYPE_LINK)){ if(c.IsType(CardType.TYPE_LINK)){
......
...@@ -189,6 +189,9 @@ ...@@ -189,6 +189,9 @@
<None Include="Magic Set Editor 2\update\update.exe.config"> <None Include="Magic Set Editor 2\update\update.exe.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None> </None>
<None Include="pack.db">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="readme.txt"> <None Include="readme.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None> </None>
......
...@@ -28,4 +28,4 @@ ...@@ -28,4 +28,4 @@
// //
// You can specify all the values or you can use the default the Revision and // You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below: // Build Numbers by using the '*' as shown below:
[assembly: AssemblyVersion("2.4.3.0")] [assembly: AssemblyVersion("2.4.3.1")]
★更新历史 ★更新历史
2.4.3.1
pack.db更新
2.4.3.0 2.4.3.0
导出link的MSE存档 导出link的MSE存档
2.4.2.5 2.4.2.5
......
[DataEditorX]2.4.3.0[DataEditorX] [DataEditorX]2.4.3.1[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL] [URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★运行环境(Environment) ★运行环境(Environment)
......
...@@ -4,3 +4,4 @@ ...@@ -4,3 +4,4 @@
/Magic Set Editor 2 /Magic Set Editor 2
/Newtonsoft.Json.xml /Newtonsoft.Json.xml
/*.config /*.config
/pack.db
★更新历史 ★更新历史
2.4.3.1
pack.db更新
2.4.3.0 2.4.3.0
导出link的MSE存档 导出link的MSE存档
2.4.2.5 2.4.2.5
......
[DataEditorX]2.4.3.0[DataEditorX] [DataEditorX]2.4.3.1[DataEditorX]
[URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL] [URL]https://github.com/247321453/DataEditorX/raw/master/win32/win32.zip[URL]
★运行环境(Environment) ★运行环境(Environment)
......
No preview for this file type
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment