Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
D
DataEditorX
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
聖園ミカ
DataEditorX
Commits
ca7c981b
Commit
ca7c981b
authored
Apr 02, 2017
by
DailyShana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix
parent
95f85bcb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
8 deletions
+6
-8
DataEditorX/Core/Mse/MseMaker.cs
DataEditorX/Core/Mse/MseMaker.cs
+4
-6
DataEditorX/data/cardinfo_english.txt
DataEditorX/data/cardinfo_english.txt
+2
-2
win32/DataEditorX.exe
win32/DataEditorX.exe
+0
-0
win32/data/_function_english.txt
win32/data/_function_english.txt
+0
-0
win32/data/_scripts_english.txt
win32/data/_scripts_english.txt
+0
-0
No files found.
DataEditorX/Core/Mse/MseMaker.cs
View file @
ca7c981b
...
...
@@ -615,18 +615,16 @@ long GetMonsterType(string cardtype)
return
type
;
}
//卡片类型
long
GetCardType
(
string
cardtype
,
string
level
,
string
type1
,
string
type2
,
string
type3
)
long
GetCardType
(
string
cardtype
,
string
level
,
params
string
[]
types
)
{
long
type
=
0
;
//魔法陷阱
type
|=
GetSpellTrapType
(
level
);
//怪兽
type
|=
GetMonsterType
(
cardtype
);
//type2-4是识别怪兽效果类型
type
|=
GetTypeInt
(
type1
);
type
|=
GetTypeInt
(
type2
);
type
|=
GetTypeInt
(
type3
);
//types是识别怪兽效果类型
foreach
(
string
typ
in
types
)
type
|=
GetTypeInt
(
typ
);
return
type
;
}
...
...
DataEditorX/data/cardinfo_english.txt
View file @
ca7c981b
################ use tab
################ use tab
##rule
0x0 Rule
0x1 OCG
...
...
@@ -97,7 +97,7 @@
0x200000 Divine-Beast
0x400000 Creator God
0x800000 Wyrm
0x1000000 Cy
bers
0x1000000 Cy
verse
##type
0x1 Monster
0x2 Spell
...
...
win32/DataEditorX.exe
View file @
ca7c981b
No preview for this file type
_function_english
→
win32/data/_function_english.txt
View file @
ca7c981b
File moved
_scripts_english
→
win32/data/_scripts_english.txt
View file @
ca7c981b
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment