Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Y
ygopro
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
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
MyCard
ygopro
Commits
7fa8ba2c
Commit
7fa8ba2c
authored
Nov 02, 2025
by
wind2009
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master' into develop
parents
c3502aae
ca952790
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
716 additions
and
101 deletions
+716
-101
.github/workflows/build.yml
.github/workflows/build.yml
+6
-17
gframe/client_field.cpp
gframe/client_field.cpp
+28
-27
gframe/client_field.h
gframe/client_field.h
+1
-1
gframe/config.h
gframe/config.h
+1
-1
gframe/data_manager.cpp
gframe/data_manager.cpp
+1
-2
gframe/data_manager.h
gframe/data_manager.h
+1
-0
gframe/deck_manager.h
gframe/deck_manager.h
+13
-12
gframe/game.cpp
gframe/game.cpp
+0
-2
gframe/game.h
gframe/game.h
+3
-3
gframe/network.h
gframe/network.h
+3
-2
lflist.conf
lflist.conf
+649
-30
strings.conf
strings.conf
+10
-4
No files found.
.github/workflows/build.yml
View file @
7fa8ba2c
...
@@ -478,21 +478,15 @@ jobs:
...
@@ -478,21 +478,15 @@ jobs:
fail-fast
:
false
fail-fast
:
false
matrix
:
matrix
:
name
:
name
:
-
macos-13-intel
-
macos-15-intel
# - macos-13-arm-cross-compile-static-link
-
macos-15-universal-static-link
-
macos-13-universal-static-link
-
macos-15-arm
-
macos-15-arm
# - macos-15-intel-cross-compile-static-link
# - macos-15-intel-cross-compile-static-link
# - macos-15-universal-static-link
include
:
include
:
-
name
:
macos-13-intel
-
name
:
macos-15-intel
os
:
macos-13
os
:
macos-15-intel
# - name: macos-13-arm-cross-compile-static-link
-
name
:
macos-15-universal-static-link
# os: macos-13
os
:
macos-15
# cross-build-arm: true
# static-link: true
-
name
:
macos-13-universal-static-link
os
:
macos-13
cross-build-intel
:
true
cross-build-intel
:
true
cross-build-arm
:
true
cross-build-arm
:
true
static-link
:
true
static-link
:
true
...
@@ -501,11 +495,6 @@ jobs:
...
@@ -501,11 +495,6 @@ jobs:
# - name: macos-15-intel-cross-compile-static-link
# - name: macos-15-intel-cross-compile-static-link
# os: macos-15
# os: macos-15
# cross-build-intel: true
# cross-build-intel: true
# static-link: true
# - name: macos-15-universal-static-link
# os: macos-15
# cross-build-intel: true
# cross-build-arm: true
# static-link: true
# static-link: true
runs-on
:
${{ matrix.os }}
runs-on
:
${{ matrix.os }}
...
...
gframe/client_field.cpp
View file @
7fa8ba2c
...
@@ -27,13 +27,11 @@ ClientField::~ClientField() {
...
@@ -27,13 +27,11 @@ ClientField::~ClientField() {
}
}
hand
[
i
].
clear
();
hand
[
i
].
clear
();
for
(
auto
&
card
:
mzone
[
i
])
{
for
(
auto
&
card
:
mzone
[
i
])
{
if
(
card
)
delete
card
;
delete
card
;
card
=
nullptr
;
card
=
nullptr
;
}
}
for
(
auto
&
card
:
szone
[
i
])
{
for
(
auto
&
card
:
szone
[
i
])
{
if
(
card
)
delete
card
;
delete
card
;
card
=
nullptr
;
card
=
nullptr
;
}
}
for
(
auto
&
card
:
grave
[
i
])
{
for
(
auto
&
card
:
grave
[
i
])
{
...
@@ -44,7 +42,6 @@ ClientField::~ClientField() {
...
@@ -44,7 +42,6 @@ ClientField::~ClientField() {
delete
card
;
delete
card
;
}
}
remove
[
i
].
clear
();
remove
[
i
].
clear
();
for
(
auto
&
card
:
extra
[
i
])
{
for
(
auto
&
card
:
extra
[
i
])
{
delete
card
;
delete
card
;
}
}
...
@@ -57,30 +54,33 @@ ClientField::~ClientField() {
...
@@ -57,30 +54,33 @@ ClientField::~ClientField() {
}
}
void
ClientField
::
Clear
()
{
void
ClientField
::
Clear
()
{
for
(
int
i
=
0
;
i
<
2
;
++
i
)
{
for
(
int
i
=
0
;
i
<
2
;
++
i
)
{
for
(
auto
cit
=
deck
[
i
].
begin
();
cit
!=
deck
[
i
].
end
();
++
cit
)
for
(
auto
&
card
:
deck
[
i
])
{
delete
*
cit
;
delete
card
;
}
deck
[
i
].
clear
();
deck
[
i
].
clear
();
for
(
auto
cit
=
hand
[
i
].
begin
();
cit
!=
hand
[
i
].
end
();
++
cit
)
for
(
auto
&
card
:
hand
[
i
])
{
delete
*
cit
;
delete
card
;
}
hand
[
i
].
clear
();
hand
[
i
].
clear
();
for
(
auto
cit
=
mzone
[
i
].
begin
();
cit
!=
mzone
[
i
].
end
();
++
cit
)
{
for
(
auto
&
card
:
mzone
[
i
])
{
if
(
*
cit
)
delete
card
;
delete
*
cit
;
card
=
nullptr
;
*
cit
=
0
;
}
}
for
(
auto
&
card
:
szone
[
i
])
{
for
(
auto
cit
=
szone
[
i
].
begin
();
cit
!=
szone
[
i
].
end
();
++
cit
)
{
delete
card
;
if
(
*
cit
)
card
=
nullptr
;
delete
*
cit
;
}
*
cit
=
0
;
for
(
auto
&
card
:
grave
[
i
])
{
}
delete
card
;
for
(
auto
cit
=
grave
[
i
].
begin
();
cit
!=
grave
[
i
].
end
();
++
cit
)
}
delete
*
cit
;
grave
[
i
].
clear
();
grave
[
i
].
clear
();
for
(
auto
cit
=
remove
[
i
].
begin
();
cit
!=
remove
[
i
].
end
();
++
cit
)
for
(
auto
&
card
:
remove
[
i
])
{
delete
*
cit
;
delete
card
;
}
remove
[
i
].
clear
();
remove
[
i
].
clear
();
for
(
auto
cit
=
extra
[
i
].
begin
();
cit
!=
extra
[
i
].
end
();
++
cit
)
for
(
auto
&
card
:
extra
[
i
])
{
delete
*
cit
;
delete
card
;
}
extra
[
i
].
clear
();
extra
[
i
].
clear
();
deck_act
[
i
]
=
false
;
deck_act
[
i
]
=
false
;
grave_act
[
i
]
=
false
;
grave_act
[
i
]
=
false
;
...
@@ -88,8 +88,9 @@ void ClientField::Clear() {
...
@@ -88,8 +88,9 @@ void ClientField::Clear() {
extra_act
[
i
]
=
false
;
extra_act
[
i
]
=
false
;
pzone_act
[
i
]
=
false
;
pzone_act
[
i
]
=
false
;
}
}
for
(
auto
sit
=
overlay_cards
.
begin
();
sit
!=
overlay_cards
.
end
();
++
sit
)
for
(
auto
&
card
:
overlay_cards
)
{
delete
*
sit
;
delete
card
;
}
overlay_cards
.
clear
();
overlay_cards
.
clear
();
extra_p_count
[
0
]
=
0
;
extra_p_count
[
0
]
=
0
;
extra_p_count
[
1
]
=
0
;
extra_p_count
[
1
]
=
0
;
...
...
gframe/client_field.h
View file @
7fa8ba2c
...
@@ -93,7 +93,7 @@ public:
...
@@ -93,7 +93,7 @@ public:
std
::
mt19937
rnd
;
std
::
mt19937
rnd
;
ClientField
();
ClientField
();
~
ClientField
();
~
ClientField
()
override
;
void
Clear
();
void
Clear
();
void
Initial
(
int
player
,
int
deckc
,
int
extrac
,
int
sidec
=
0
);
void
Initial
(
int
player
,
int
deckc
,
int
extrac
,
int
sidec
=
0
);
void
ResetSequence
(
std
::
vector
<
ClientCard
*>&
list
,
bool
reset_height
);
void
ResetSequence
(
std
::
vector
<
ClientCard
*>&
list
,
bool
reset_height
);
...
...
gframe/config.h
View file @
7fa8ba2c
...
@@ -80,7 +80,7 @@ inline FILE* mywfopen(const wchar_t* filename, const char* mode) {
...
@@ -80,7 +80,7 @@ inline FILE* mywfopen(const wchar_t* filename, const char* mode) {
#include <irrlicht.h>
#include <irrlicht.h>
extern
const
unsigned
short
PRO_VERSION
;
constexpr
uint16_t
PRO_VERSION
=
0x1362
;
extern
unsigned
int
enable_log
;
extern
unsigned
int
enable_log
;
extern
bool
exit_on_return
;
extern
bool
exit_on_return
;
extern
bool
open_file
;
extern
bool
open_file
;
...
...
gframe/data_manager.cpp
View file @
7fa8ba2c
...
@@ -89,10 +89,9 @@ bool DataManager::LoadDB(const wchar_t* wfile) {
...
@@ -89,10 +89,9 @@ bool DataManager::LoadDB(const wchar_t* wfile) {
spmembuffer_t
*
mem
=
(
spmembuffer_t
*
)
std
::
calloc
(
sizeof
(
spmembuffer_t
),
1
);
spmembuffer_t
*
mem
=
(
spmembuffer_t
*
)
std
::
calloc
(
sizeof
(
spmembuffer_t
),
1
);
spmemvfs_env_init
();
spmemvfs_env_init
();
mem
->
total
=
mem
->
used
=
reader
->
getSize
();
mem
->
total
=
mem
->
used
=
reader
->
getSize
();
mem
->
data
=
(
char
*
)
std
::
malloc
(
mem
->
total
+
1
);
mem
->
data
=
(
char
*
)
std
::
malloc
(
mem
->
total
);
reader
->
read
(
mem
->
data
,
mem
->
total
);
reader
->
read
(
mem
->
data
,
mem
->
total
);
reader
->
drop
();
reader
->
drop
();
(
mem
->
data
)[
mem
->
total
]
=
'\0'
;
bool
ret
{};
bool
ret
{};
if
(
spmemvfs_open_db
(
&
db
,
file
,
mem
)
!=
SQLITE_OK
)
if
(
spmemvfs_open_db
(
&
db
,
file
,
mem
)
!=
SQLITE_OK
)
ret
=
Error
(
db
.
handle
);
ret
=
Error
(
db
.
handle
);
...
...
gframe/data_manager.h
View file @
7fa8ba2c
...
@@ -15,6 +15,7 @@ namespace irr {
...
@@ -15,6 +15,7 @@ namespace irr {
}
}
namespace
ygo
{
namespace
ygo
{
constexpr
int
MAX_STRING_ID
=
0x7ff
;
constexpr
int
MAX_STRING_ID
=
0x7ff
;
constexpr
uint32_t
MIN_CARD_ID
=
(
uint32_t
)(
MAX_STRING_ID
+
1
)
>>
4
;
constexpr
uint32_t
MIN_CARD_ID
=
(
uint32_t
)(
MAX_STRING_ID
+
1
)
>>
4
;
constexpr
uint32_t
MAX_CARD_ID
=
0x0fffffffU
;
constexpr
uint32_t
MAX_CARD_ID
=
0x0fffffffU
;
...
...
gframe/deck_manager.h
View file @
7fa8ba2c
...
@@ -7,20 +7,21 @@
...
@@ -7,20 +7,21 @@
#include "data_manager.h"
#include "data_manager.h"
namespace
ygo
{
namespace
ygo
{
constexpr
int
DECK_MAX_SIZE
=
60
;
constexpr
int
DECK_MIN_SIZE
=
40
;
constexpr
int
EXTRA_MAX_SIZE
=
15
;
constexpr
int
SIDE_MAX_SIZE
=
15
;
constexpr
int
PACK_MAX_SIZE
=
1000
;
constexpr
int
MAINC_MAX
=
250
;
// the limit of card_state
constexpr
int
DECK_MAX_SIZE
=
60
;
constexpr
int
SIDEC_MAX
=
MAINC_MAX
;
constexpr
int
DECK_MIN_SIZE
=
40
;
constexpr
int
EXTRA_MAX_SIZE
=
15
;
constexpr
int
SIDE_MAX_SIZE
=
15
;
constexpr
int
PACK_MAX_SIZE
=
1000
;
constexpr
int
DECK_CATEGORY_PACK
=
0
;
constexpr
int
MAINC_MAX
=
250
;
// the limit of card_state
constexpr
int
DECK_CATEGORY_BOT
=
1
;
constexpr
int
SIDEC_MAX
=
MAINC_MAX
;
constexpr
int
DECK_CATEGORY_NONE
=
2
;
constexpr
int
DECK_CATEGORY_SEPARATOR
=
3
;
constexpr
int
DECK_CATEGORY_PACK
=
0
;
constexpr
int
DECK_CATEGORY_CUSTOM
=
4
;
constexpr
int
DECK_CATEGORY_BOT
=
1
;
constexpr
int
DECK_CATEGORY_NONE
=
2
;
constexpr
int
DECK_CATEGORY_SEPARATOR
=
3
;
constexpr
int
DECK_CATEGORY_CUSTOM
=
4
;
struct
LFList
{
struct
LFList
{
unsigned
int
hash
{};
unsigned
int
hash
{};
...
...
gframe/game.cpp
View file @
7fa8ba2c
...
@@ -12,8 +12,6 @@
...
@@ -12,8 +12,6 @@
#include "single_mode.h"
#include "single_mode.h"
#include <thread>
#include <thread>
const
unsigned
short
PRO_VERSION
=
0x1362
;
namespace
ygo
{
namespace
ygo
{
Game
*
mainGame
;
Game
*
mainGame
;
...
...
gframe/game.h
View file @
7fa8ba2c
...
@@ -22,12 +22,12 @@
...
@@ -22,12 +22,12 @@
#include <mutex>
#include <mutex>
#include <functional>
#include <functional>
constexpr
int
DEFAULT_DUEL_RULE
=
5
;
namespace
ygo
{
constexpr
int
DEFAULT_DUEL_RULE
=
CURRENT_RULE
;
constexpr
int
CONFIG_LINE_SIZE
=
1024
;
constexpr
int
CONFIG_LINE_SIZE
=
1024
;
constexpr
int
TEXT_LINE_SIZE
=
256
;
constexpr
int
TEXT_LINE_SIZE
=
256
;
namespace
ygo
{
template
<
size_t
N
>
template
<
size_t
N
>
bool
IsExtension
(
const
wchar_t
*
filename
,
const
wchar_t
(
&
extension
)[
N
])
{
bool
IsExtension
(
const
wchar_t
*
filename
,
const
wchar_t
(
&
extension
)[
N
])
{
auto
flen
=
std
::
wcslen
(
filename
);
auto
flen
=
std
::
wcslen
(
filename
);
...
...
gframe/network.h
View file @
7fa8ba2c
...
@@ -14,8 +14,9 @@
...
@@ -14,8 +14,9 @@
#define check_trivially_copyable(T) static_assert(std::is_trivially_copyable<T>::value == true && std::is_standard_layout<T>::value == true, "not trivially copyable")
#define check_trivially_copyable(T) static_assert(std::is_trivially_copyable<T>::value == true && std::is_standard_layout<T>::value == true, "not trivially copyable")
namespace
ygo
{
namespace
ygo
{
constexpr
int
SIZE_NETWORK_BUFFER
=
0x20000
;
constexpr
int
MAX_DATA_SIZE
=
UINT16_MAX
-
1
;
constexpr
int
SIZE_NETWORK_BUFFER
=
0x20000
;
constexpr
int
MAX_DATA_SIZE
=
UINT16_MAX
-
1
;
struct
HostInfo
{
struct
HostInfo
{
uint32_t
lflist
{};
uint32_t
lflist
{};
...
...
lflist.conf
View file @
7fa8ba2c
#[2025.
7][2025.4 TCG][2025.4][2025.1][2024.10][2024.7][2024.4][2024.1][2023.10][2023.7][2023.4][2023.1][2022.10][2022.7][2022.4][2022.1][2021.10][2021.7][2021.4][2021.1][2020.10][2020.7][2020.4][2020.1][2019.10][2019.7][2019.4][2019.1][2018.10][2018.7][2018.4][2018.1][2017.10][2017.7][2017.4][2017.1][2016.10][2016.7][2016.4][2016.1][2015.10][2015.4][2015.1][2014.10][2014.7][2014.4][2014.2][2013.9
][2024.12 TCG][2024.9 TCG][2024.4 TCG][2024.1 TCG][2023.9 TCG][2023.6 TCG][2023.2 TCG][2022.12 TCG][2022.10 TCG][2022.5 TCG][2022.2 TCG][2021.10 TCG][2021.7 TCG][2021.3 TCG][2020.12 TCG][2020.9 TCG][2020.6 TCG][2020.4 TCG][2020.1 TCG][2019.10 TCG][2019.7 TCG][2019.4 TCG][2019.1 TCG][2018.12 TCG][2018.9 TCG][2018.5 TCG][2018.2 TCG][2017.11 TCG][2017.9 TCG][2017.6 TCG][2017.3 TCG][2016.8 TCG][2016.4 TCG][2015.11 TCG][2015.7 TCG][2015.4 TCG][2015.1 TCG][2014.10 TCG][2014.7 TCG][2014.4 TCG][2014.1.1 TCG][2013.10.11 TCG][2013.3.1][2012.9.1][2012.3.1][2011.9.1]
#[2025.
10][2025.10 TCG][2025.7][2025.4][2025.1][2024.10][2024.7][2024.4][2024.1][2023.10][2023.7][2023.4][2023.1][2022.10][2022.7][2022.4][2022.1][2021.10][2021.7][2021.4][2021.1][2020.10][2020.7][2020.4][2020.1][2019.10][2019.7][2019.4][2019.1][2018.10][2018.7][2018.4][2018.1][2017.10][2017.7][2017.4][2017.1][2016.10][2016.7][2016.4][2016.1][2015.10][2015.4][2015.1][2014.10][2014.7][2014.4][2014.2][2013.9][2025.9 TCG][2025.4 TCG
][2024.12 TCG][2024.9 TCG][2024.4 TCG][2024.1 TCG][2023.9 TCG][2023.6 TCG][2023.2 TCG][2022.12 TCG][2022.10 TCG][2022.5 TCG][2022.2 TCG][2021.10 TCG][2021.7 TCG][2021.3 TCG][2020.12 TCG][2020.9 TCG][2020.6 TCG][2020.4 TCG][2020.1 TCG][2019.10 TCG][2019.7 TCG][2019.4 TCG][2019.1 TCG][2018.12 TCG][2018.9 TCG][2018.5 TCG][2018.2 TCG][2017.11 TCG][2017.9 TCG][2017.6 TCG][2017.3 TCG][2016.8 TCG][2016.4 TCG][2015.11 TCG][2015.7 TCG][2015.4 TCG][2015.1 TCG][2014.10 TCG][2014.7 TCG][2014.4 TCG][2014.1.1 TCG][2013.10.11 TCG][2013.3.1][2012.9.1][2012.3.1][2011.9.1]
!
2025
.
7
!
2025
.
10
#forbidden
#forbidden
20292186
0
--アーティファクト-デスサイズ
20292186
0
--アーティファクト-デスサイズ
91869203
0
--アマゾネスの射手
91869203
0
--アマゾネスの射手
20663556
0
--イレカエル
20663556
0
--イレカエル
44910027
0
--ヴィクトリー・ドラゴン
44910027
0
--ヴィクトリー・ドラゴン
38273745
0
--ヴェルズ・ウロボロス
27552504
0
--永遠の淑女 ベアトリーチェ
27552504
0
--永遠の淑女 ベアトリーチェ
51858306
0
--エクリプス・ワイバーン
62242678
0
--琰魔竜王 レッド・デーモン・カラミティ
62242678
0
--琰魔竜王 レッド・デーモン・カラミティ
34945480
0
--外神アザトート
34945480
0
--外神アザトート
95727991
0
--カタパルト・タートル
95727991
0
--カタパルト・タートル
...
@@ -72,6 +72,7 @@
...
@@ -72,6 +72,7 @@
63789924
0
--盗人の煙玉
63789924
0
--盗人の煙玉
70828912
0
--早すぎた埋葬
70828912
0
--早すぎた埋葬
42703248
0
--ハリケーン
42703248
0
--ハリケーン
72537897
0
--魔獣の懐柔
76375976
0
--魔鍾洞
76375976
0
--魔鍾洞
34906152
0
--マスドライバー
34906152
0
--マスドライバー
46411259
0
--突然変異
46411259
0
--突然変異
...
@@ -88,15 +89,17 @@
...
@@ -88,15 +89,17 @@
17178486
0
--ライフチェンジャー
17178486
0
--ライフチェンジャー
28566710
0
--ラストバトル!
28566710
0
--ラストバトル!
#limit
#limit
76794549
1
--アストログラフ・マジシャン
79606837
1
--虹光の宣告者
29302858
1
--
VS
ラゼン
34022970
1
--エクス・ライゼオル
34022970
1
--エクス・ライゼオル
51858306
1
--エクリプス・ワイバーン
29301450
1
--
S
:
P
リトルナイト
29301450
1
--
S
:
P
リトルナイト
68304193
1
--クシャトリラ・ユニコーン
68304193
1
--クシャトリラ・ユニコーン
72270339
1
--黒魔女ディアベルスター
72270339
1
--黒魔女ディアベルスター
28642461
1
--
K
9-66
a
号 ヨクル
99937011
1
--剣神官ムドラ
99937011
1
--剣神官ムドラ
38814750
1
--
PSY
フレームギア・γ
38814750
1
--
PSY
フレームギア・γ
74586817
1
--
PSY
フレームロード・Ω
74586817
1
--
PSY
フレームロード・Ω
02563463
1
--流離のグリフォンライダー
32731036
1
--深淵の獣ルベリオン
32731036
1
--深淵の獣ルベリオン
36521307
1
--斬機サーキュラー
36521307
1
--斬機サーキュラー
78872731
1
--十二獣モルモラット
78872731
1
--十二獣モルモラット
...
@@ -116,11 +119,9 @@
...
@@ -116,11 +119,9 @@
91800273
1
--ディメンション・アトラクター
91800273
1
--ディメンション・アトラクター
90953320
1
--
TG
ハイパー・ライブラリアン
90953320
1
--
TG
ハイパー・ライブラリアン
91810826
1
--天盃龍チュンドラ
91810826
1
--天盃龍チュンドラ
39064822
1
--トロイメア・ゴブリン
75433814
1
--
No
.
40
ギミック・パペット-ヘブンズ・ストリングス
75433814
1
--
No
.
40
ギミック・パペット-ヘブンズ・ストリングス
17266660
1
--朱光の宣告者
17266660
1
--朱光の宣告者
06637331
1
--深淵の獣ドルイドヴルム
06637331
1
--深淵の獣ドルイドヴルム
72656408
1
--深淵の獣バルドレイク
33854624
1
--深淵の獣マグナムート
33854624
1
--深淵の獣マグナムート
80453041
1
--ファントム・オブ・ユベル
80453041
1
--ファントム・オブ・ユベル
33396948
1
--封印されしエクゾディア
33396948
1
--封印されしエクゾディア
...
@@ -135,11 +136,11 @@
...
@@ -135,11 +136,11 @@
77103950
1
--壱世壊=ペルレイノ
77103950
1
--壱世壊=ペルレイノ
33782437
1
--一時休戦
33782437
1
--一時休戦
01845204
1
--簡易融合
01845204
1
--簡易融合
61292243
1
--
EMERGENCY
!
19613556
1
--大嵐
19613556
1
--大嵐
81439173
1
--おろかな埋葬
81439173
1
--おろかな埋葬
85106525
1
--篝火
85106525
1
--篝火
84211599
1
--金満で謙虚な壺
84211599
1
--金満で謙虚な壺
06153210
1
--計都星辰
23701465
1
--原初の種
23701465
1
--原初の種
80845034
1
--“罪宝狩りの悪魔”
80845034
1
--“罪宝狩りの悪魔”
30336082
1
--盃満ちる燦幻荘
30336082
1
--盃満ちる燦幻荘
...
@@ -157,7 +158,6 @@
...
@@ -157,7 +158,6 @@
07394770
1
--ブリリアント・フュージョン
07394770
1
--ブリリアント・フュージョン
73468603
1
--盆回し
73468603
1
--盆回し
65681983
1
--抹殺の指名者
65681983
1
--抹殺の指名者
71832012
1
--六世壊=パライゾス
01475311
1
--闇の誘惑
01475311
1
--闇の誘惑
44362883
1
--烙印融合
44362883
1
--烙印融合
92107604
1
--神碑の泉
92107604
1
--神碑の泉
...
@@ -171,21 +171,29 @@
...
@@ -171,21 +171,29 @@
58921041
1
--魔封じの芳香
58921041
1
--魔封じの芳香
23002292
1
--レッド・リブート
23002292
1
--レッド・リブート
#semi limit
#semi limit
13533678
2
--スプライト・ジェット
76794549
2
--アストログラフ・マジシャン
92248362
2
--
K
9-17号 イヅナ
23434538
2
--増殖する
G
23434538
2
--増殖する
G
72656408
2
--深淵の獣バルドレイク
30581601
2
--ヤミー★スナッチー
61292243
2
--
EMERGENCY
!
35726888
2
--おろかな副葬
35726888
2
--おろかな副葬
67723438
2
--緊急テレポート
49238328
2
--強欲で金満な壺
49238328
2
--強欲で金満な壺
35261759
2
--強欲で貪欲な壺
35261759
2
--強欲で貪欲な壺
66730191
2
--燦幻開門
48130397
2
--超融合
48130397
2
--超融合
24224830
2
--墓穴の指名者
24224830
2
--墓穴の指名者
93600443
2
--マスク・チェンジ・セカンド
21347668
2
--ピュアリィ・スリーピィメモリー
21347668
2
--ピュアリィ・スリーピィメモリー
71832012
2
--六世壊=パライゾス
!
2025
.
4
TCG
!
2025
.
10
TCG
#forbidden
#forbidden
62320425
0
--
Agido
the
Ancient
Sentinel
62320425
0
--
Agido
the
Ancient
Sentinel
06728559
0
--
Archnemeses
Protos
80237445
0
--
Artifact
Mjollnir
20292186
0
--
Artifact
Scythe
20292186
0
--
Artifact
Scythe
19740112
0
--
Barrier
Statue
of
the
Drought
47961808
0
--
Barrier
Statue
of
the
Inferno
73356503
0
--
Barrier
Statue
of
the
Stormwinds
73356503
0
--
Barrier
Statue
of
the
Stormwinds
09929398
0
--
Blackwing
-
Gofu
the
Vague
Shadow
09929398
0
--
Blackwing
-
Gofu
the
Vague
Shadow
94689206
0
--
Block
Dragon
94689206
0
--
Block
Dragon
...
@@ -196,8 +204,8 @@
...
@@ -196,8 +204,8 @@
55623480
0
--
Fairy
Tail
-
Snow
55623480
0
--
Fairy
Tail
-
Snow
78706415
0
--
Fiber
Jar
78706415
0
--
Fiber
Jar
93369354
0
--
Fishborg
Blaster
93369354
0
--
Fishborg
Blaster
42009836
0
--
Fossil
Dyna
Pachycephalo
55204071
0
--
Gimmick
Puppet
Nightmare
55204071
0
--
Gimmick
Puppet
Nightmare
67441435
0
--
Glow
-
Up
Bulb
75732622
0
--
Grinder
Golem
75732622
0
--
Grinder
Golem
41855169
0
--
Jowgen
the
Spiritualist
41855169
0
--
Jowgen
the
Spiritualist
25926710
0
--
Kelbek
the
Ancient
Vanguard
25926710
0
--
Kelbek
the
Ancient
Vanguard
...
@@ -211,7 +219,6 @@
...
@@ -211,7 +219,6 @@
88071625
0
--
The
Tyrant
Neptune
88071625
0
--
The
Tyrant
Neptune
44910027
0
--
Victory
Dragon
44910027
0
--
Victory
Dragon
17412721
0
--
Elder
Entity
Norden
17412721
0
--
Elder
Entity
Norden
46640168
0
--
Fiendsmith
'
s
Lacrima
43387895
0
--
Supreme
King
Dragon
Starving
Venom
43387895
0
--
Supreme
King
Dragon
Starving
Venom
92731385
0
--
Tearlaments
Kitkallos
92731385
0
--
Tearlaments
Kitkallos
04280258
0
--
Apollousa
,
Bow
of
the
Goddess
04280258
0
--
Apollousa
,
Bow
of
the
Goddess
...
@@ -226,13 +233,13 @@
...
@@ -226,13 +233,13 @@
03679218
0
--
Knightmare
Mermaid
03679218
0
--
Knightmare
Mermaid
30342076
0
--
Link
Decoder
30342076
0
--
Link
Decoder
85243784
0
--
Linkross
85243784
0
--
Linkross
41999284
0
--
Linkuriboh
44097050
0
--
Mecha
Phantom
Beast
Auroradon
44097050
0
--
Mecha
Phantom
Beast
Auroradon
71818935
0
--
Moon
of
the
Closed
Heaven
25725326
0
--
Prank
-
Kids
Meow
-
Meow
-
Mu
25725326
0
--
Prank
-
Kids
Meow
-
Meow
-
Mu
70369116
0
--
Predaplant
Verte
Anaconda
70369116
0
--
Predaplant
Verte
Anaconda
72330894
0
--
Simorgh
,
Bird
of
Sovereignty
72330894
0
--
Simorgh
,
Bird
of
Sovereignty
59859086
0
--
Splash
Mage
27381364
0
--
Spright
Elf
27381364
0
--
Spright
Elf
61665245
0
--
Summon
Sorceress
33918636
0
--
Superheavy
Samurai
Scarecrow
33918636
0
--
Superheavy
Samurai
Scarecrow
22593417
0
--
Topologic
Gumblar
Dragon
22593417
0
--
Topologic
Gumblar
Dragon
83152482
0
--
Union
Carrier
83152482
0
--
Union
Carrier
...
@@ -244,11 +251,14 @@
...
@@ -244,11 +251,14 @@
21044178
0
--
Abyss
Dweller
21044178
0
--
Abyss
Dweller
00440556
0
--
Bahamut
Shark
00440556
0
--
Bahamut
Shark
27552504
0
--
Beatrice
,
Lady
of
the
Eternal
27552504
0
--
Beatrice
,
Lady
of
the
Eternal
38273745
0
--
Evilswarm
Ouroboros
48626373
0
--
Kashtira
Arise
-
Heart
48626373
0
--
Kashtira
Arise
-
Heart
11398059
0
--
King
of
the
Feral
Imps
34086406
0
--
Lavalval
Chain
34086406
0
--
Lavalval
Chain
04423206
0
--
M
-
X
-
Saber
Invoker
04423206
0
--
M
-
X
-
Saber
Invoker
54719828
0
--
Number
16
:
Shock
Master
54719828
0
--
Number
16
:
Shock
Master
10389142
0
--
Number
42
:
Galaxy
Tomahawk
10389142
0
--
Number
42
:
Galaxy
Tomahawk
35772782
0
--
Number
67
:
Pair
-
a
-
Dice
Smasher
63504681
0
--
Number
86
:
Heroic
Champion
-
Rhongomyniad
63504681
0
--
Number
86
:
Heroic
Champion
-
Rhongomyniad
95474755
0
--
Number
89
:
Diablosis
the
Mind
Hacker
95474755
0
--
Number
89
:
Diablosis
the
Mind
Hacker
58820923
0
--
Number
95
:
Galaxy
-
Eyes
Dark
Matter
Dragon
58820923
0
--
Number
95
:
Galaxy
-
Eyes
Dark
Matter
Dragon
...
@@ -257,7 +267,6 @@
...
@@ -257,7 +267,6 @@
88581108
0
--
True
King
of
All
Calamities
88581108
0
--
True
King
of
All
Calamities
81122844
0
--
Wind
-
Up
Carrier
Zenmaity
81122844
0
--
Wind
-
Up
Carrier
Zenmaity
85115440
0
--
Zoodiac
Broadbull
85115440
0
--
Zoodiac
Broadbull
48905153
0
--
Zoodiac
Drident
69243953
0
--
Butterfly
Dagger
-
Elma
69243953
0
--
Butterfly
Dagger
-
Elma
57953380
0
--
Card
of
Safe
Return
57953380
0
--
Card
of
Safe
Return
60682203
0
--
Cold
Wave
60682203
0
--
Cold
Wave
...
@@ -282,6 +291,7 @@
...
@@ -282,6 +291,7 @@
42829885
0
--
The
Forceful
Sentry
42829885
0
--
The
Forceful
Sentry
43262273
0
--
Appointer
of
the
Red
Lotus
43262273
0
--
Appointer
of
the
Red
Lotus
01041278
0
--
Branded
Expulsion
01041278
0
--
Branded
Expulsion
83326048
0
--
Dimensional
Barrier
61740673
0
--
Imperial
Order
61740673
0
--
Imperial
Order
28566710
0
--
Last
Turn
28566710
0
--
Last
Turn
23002292
0
--
Red
Reboot
23002292
0
--
Red
Reboot
...
@@ -298,39 +308,43 @@
...
@@ -298,39 +308,43 @@
44519536
1
--
Left
Leg
of
the
Forbidden
One
44519536
1
--
Left
Leg
of
the
Forbidden
One
70903634
1
--
Right
Arm
of
the
Forbidden
One
70903634
1
--
Right
Arm
of
the
Forbidden
One
08124921
1
--
Right
Leg
of
the
Forbidden
One
08124921
1
--
Right
Leg
of
the
Forbidden
One
06728559
1
--
Archnemeses
Protos
76794549
1
--
Astrograph
Sorcerer
76794549
1
--
Astrograph
Sorcerer
06637331
1
--
Bystial
Druiswurm
06637331
1
--
Bystial
Druiswurm
33854624
1
--
Bystial
Magnamhut
33854624
1
--
Bystial
Magnamhut
14536035
1
--
Dark
Grepher
14536035
1
--
Dark
Grepher
91800273
1
--
Dimension
Shifter
91800273
1
--
Dimension
Shifter
33396948
1
--
Exodia
the
Forbidden
One
33396948
1
--
Exodia
the
Forbidden
One
34022970
1
--
Ext
Ryzeal
63542003
1
--
Keldo
the
Sacred
Protector
63542003
1
--
Keldo
the
Sacred
Protector
21377582
1
--
Master
Peace
,
the
True
Dracoslaying
King
32061192
1
--
Maliss
<
P
>
Dormouse
36521307
1
--
Mathmech
Circular
36521307
1
--
Mathmech
Circular
38572779
1
--
Miscellaneousaurus
38572779
1
--
Miscellaneousaurus
99937011
1
--
Mudora
the
Sword
Oracle
99937011
1
--
Mudora
the
Sword
Oracle
12958919
1
--
Phantom
Skyblaster
38814750
1
--
PSY
-
Framegear
Gamma
38814750
1
--
PSY
-
Framegear
Gamma
20663556
1
--
Substitoad
20663556
1
--
Substitoad
37961969
1
--
Tearlaments
Havnis
37961969
1
--
Tearlaments
Havnis
74078255
1
--
Tearlaments
Merrli
74078255
1
--
Tearlaments
Merrli
00572850
1
--
Tearlaments
Scheiren
00572850
1
--
Tearlaments
Scheiren
91810826
1
--
Tenpai
Dragon
Chundra
91810826
1
--
Tenpai
Dragon
Chundra
29302858
1
--
Vanquish
Soul
Razen
78872731
1
--
Zoodiac
Ratpier
78872731
1
--
Zoodiac
Ratpier
46640168
1
--
Fiendsmith
'
s
Lacrima
39512984
1
--
Gem
-
Knight
Master
Diamond
39512984
1
--
Gem
-
Knight
Master
Diamond
80453041
1
--
Phantom
of
Yubel
80453041
1
--
Phantom
of
Yubel
41999284
1
--
Linkuriboh
73539069
1
--
Striker
Dragon
73539069
1
--
Striker
Dragon
61665245
1
--
Summon
Sorceress
93896655
1
--
Sunavalon
Dryas
93896655
1
--
Sunavalon
Dryas
65563871
1
--
Sunvine
Healer
65563871
1
--
Sunvine
Healer
79606837
1
--
Herald
of
the
Arc
Light
74586817
1
--
PSY
-
Framelord
Omega
74586817
1
--
PSY
-
Framelord
Omega
90953320
1
--
T
.
G
.
Hyper
Librarian
90953320
1
--
T
.
G
.
Hyper
Librarian
00581014
1
--
Daigusto
Emeral
00581014
1
--
Daigusto
Emeral
75433814
1
--
Number
40
:
Gimmick
Puppet
of
Strings
75433814
1
--
Number
40
:
Gimmick
Puppet
of
Strings
69170557
1
--
Number
C40
:
Gimmick
Puppet
of
Dark
Strings
69170557
1
--
Number
C40
:
Gimmick
Puppet
of
Dark
Strings
34909328
1
--
Ryzeal
Detonator
34909328
1
--
Ryzeal
Detonator
48905153
1
--
Zoodiac
Drident
85106525
1
--
Bonfire
85106525
1
--
Bonfire
44362883
1
--
Branded
Fusion
07394770
1
--
Brilliant
Fusion
07394770
1
--
Brilliant
Fusion
24224830
1
--
Called
by
the
Grave
24224830
1
--
Called
by
the
Grave
72892473
1
--
Card
Destruction
72892473
1
--
Card
Destruction
...
@@ -340,8 +354,8 @@
...
@@ -340,8 +354,8 @@
99266988
1
--
Chaos
Space
99266988
1
--
Chaos
Space
67616300
1
--
Chicken
Game
67616300
1
--
Chicken
Game
65681983
1
--
Crossout
Designator
65681983
1
--
Crossout
Designator
31552317
1
--
Crystron
Inclusion
15854426
1
--
Divine
Wind
of
Mist
Valley
15854426
1
--
Divine
Wind
of
Mist
Valley
13035077
1
--
Dragonic
Diagram
95308449
1
--
Final
Countdown
95308449
1
--
Final
Countdown
81439173
1
--
Foolish
Burial
81439173
1
--
Foolish
Burial
27970830
1
--
Gateway
of
the
Six
27970830
1
--
Gateway
of
the
Six
...
@@ -353,6 +367,7 @@
...
@@ -353,6 +367,7 @@
71650854
1
--
Magical
Mid
-
Breaker
Field
71650854
1
--
Magical
Mid
-
Breaker
Field
43040603
1
--
Monster
Gate
43040603
1
--
Monster
Gate
83764718
1
--
Monster
Reborn
83764718
1
--
Monster
Reborn
72537897
1
--
Obedience
Schooled
33782437
1
--
One
Day
of
Peace
33782437
1
--
One
Day
of
Peace
02295440
1
--
One
for
One
02295440
1
--
One
for
One
84211599
1
--
Pot
of
Prosperity
84211599
1
--
Pot
of
Prosperity
...
@@ -365,35 +380,214 @@
...
@@ -365,35 +380,214 @@
52340444
1
--
Sky
Striker
Mecha
-
Hornet
Drones
52340444
1
--
Sky
Striker
Mecha
-
Hornet
Drones
71344451
1
--
Slash
Draw
71344451
1
--
Slash
Draw
45986603
1
--
Snatch
Steal
45986603
1
--
Snatch
Steal
54562327
1
--
Stake
your
Soul
!
73628505
1
--
Terraforming
73628505
1
--
Terraforming
11110587
1
--
That
Grass
Looks
Greener
11110587
1
--
That
Grass
Looks
Greener
25311006
1
--
Triple
Tactics
Talent
25311006
1
--
Triple
Tactics
Talent
46060017
1
--
Zoodiac
Barrage
58921041
1
--
Anti
-
Spell
Fragrance
58921041
1
--
Anti
-
Spell
Fragrance
53334471
1
--
Gozen
Match
53334471
1
--
Gozen
Match
32723153
1
--
Magical
Explosion
32723153
1
--
Magical
Explosion
03734202
1
--
Naturia
Sacred
Tree
03734202
1
--
Naturia
Sacred
Tree
90846359
1
--
Rivalry
of
Warlords
90846359
1
--
Rivalry
of
Warlords
82732705
1
--
Skill
Drain
82732705
1
--
Skill
Drain
41420027
1
--
Solemn
Judgment
24207889
1
--
There
Can
Be
Only
One
24207889
1
--
There
Can
Be
Only
One
#semi limit
#semi limit
61901281
2
--
Black
Dragon
Collapserpent
61901281
2
--
Black
Dragon
Collapserpent
34022970
2
--
Ext
Ryzeal
08633261
2
--
Ice
Ryzeal
08633261
2
--
Ice
Ryzeal
32061192
2
--
Maliss
<
P
>
Dormouse
69272449
2
--
Maliss
<
P
>
White
Rabbit
69272449
2
--
Maliss
<
P
>
White
Rabbit
33508719
2
--
Morphing
Jar
09674034
2
--
Snake
-
Eye
Ash
90241276
2
--
Snake
-
Eyes
Poplar
35844557
2
--
Sword
Ryzeal
35844557
2
--
Sword
Ryzeal
41165831
2
--
Unchained
Soul
of
Sharvara
41165831
2
--
Unchained
Soul
of
Sharvara
99234526
2
--
White
Dragon
Wyverburster
99234526
2
--
White
Dragon
Wyverburster
14532163
2
--
Lightning
Storm
44362883
2
--
Branded
Fusion
68337209
2
--
Maliss
in
Underground
68337209
2
--
Maliss
in
Underground
55584558
2
--
Purrely
Delicious
Memory
55584558
2
--
Purrely
Delicious
Memory
21347668
2
--
Purrely
Sleepy
Memory
21347668
2
--
Purrely
Sleepy
Memory
92107604
2
--
Runick
Fountain
92107604
2
--
Runick
Fountain
!
2025
.
7
#forbidden
20292186
0
--アーティファクト-デスサイズ
91869203
0
--アマゾネスの射手
20663556
0
--イレカエル
44910027
0
--ヴィクトリー・ドラゴン
27552504
0
--永遠の淑女 ベアトリーチェ
51858306
0
--エクリプス・ワイバーン
62242678
0
--琰魔竜王 レッド・デーモン・カラミティ
34945480
0
--外神アザトート
95727991
0
--カタパルト・タートル
08903700
0
--儀式魔人リリーサー
11384280
0
--キャノン・ソルジャー
17412721
0
--旧神ノーデン
32909498
0
--クシャトリラ・フェンリル
50588353
0
--水晶機巧-ハリファイバー
62320425
0
--古衛兵アギド
25926710
0
--古尖兵ケルベク
03040496
0
--混沌魔龍 カオス・ルーラー
88071625
0
--
The
tyrant
NEPTUNE
52653092
0
--
SNo
.
0
ホープ・ゼアル
85115440
0
--十二獣ブルホーン
59537380
0
--守護竜アガーペイン
86148577
0
--守護竜エルピィ
04280258
0
--召命の神弓-アポロウーサ
21044178
0
--深淵に潜む者
88581108
0
--真竜皇
V
.
F
.
D
.
27381364
0
--スプライト・エルフ
16923472
0
--ゼンマイハンター
15341821
0
--ダンディライオン
77679716
0
--超重武者装留ブレイク・アーマー
92731385
0
--ティアラメンツ・キトカロス
69015963
0
--デビル・フランケン
79875176
0
--トゥーン・キャノン・ソルジャー
75732622
0
--トーチ・ゴーレム
22593417
0
--トポロジック・ガンブラー・ドラゴン
03679218
0
--トロイメア・マーメイド
54719828
0
--
No
.
16
色の支配者ショック・ルーラー
35772782
0
--
No
.
67
パラダイスマッシャー
63504681
0
--
No
.
86
H
-
C
ロンゴミアント
58820923
0
--
No
.
95
ギャラクシーアイズ・ダークマター・ドラゴン
78706415
0
--ファイバーポッド
93369354
0
--フィッシュボーグ-ガンナー
23558733
0
--フェニキシアン・クラスター・アマリリス
09929398
0
--
BF
-朧影のゴウフウ
70369116
0
--捕食植物ヴェルテ・アナコンダ
63101919
0
--マジックテンペスター
34206604
0
--魔導サイエンティスト
14702066
0
--メガキャノン・ソルジャー
96782886
0
--メンタルマスター
90809975
0
--餅カエル
83152482
0
--ユニオン・キャリアー
34086406
0
--ラヴァルバル・チェイン
85243784
0
--リンクロス
73356503
0
--烈風の結界像
57421866
0
--レベル・スティーラー
41482598
0
--悪夢の蜃気楼
44763025
0
--いたずら好きな双子悪魔
17375316
0
--押収
35059553
0
--カイザーコロシアム
74191942
0
--苦渋の選択
42829885
0
--強引な番兵
55144522
0
--強欲な壺
23557835
0
--次元融合
31423101
0
--神剣-フェニックスブレード
57953380
0
--生還の宝札
54447022
0
--ソウル・チャージ
60682203
0
--大寒波
69243953
0
--蝶の短剣-エルマ
79571449
0
--天使の施し
63789924
0
--盗人の煙玉
70828912
0
--早すぎた埋葬
42703248
0
--ハリケーン
76375976
0
--魔鍾洞
34906152
0
--マスドライバー
46411259
0
--突然変異
85602018
0
--遺言状
27174286
0
--異次元からの帰還
05851097
0
--虚無空間
93016201
0
--王宮の弾圧
61740673
0
--王宮の勅命
23516703
0
--サモンリミッター
03280747
0
--第六感
64697231
0
--ダスト・シュート
80604091
0
--血の代償
32723153
0
--マジカル・エクスプロージョン
17178486
0
--ライフチェンジャー
28566710
0
--ラストバトル!
#limit
76794549
1
--アストログラフ・マジシャン
34022970
1
--エクス・ライゼオル
29301450
1
--
S
:
P
リトルナイト
68304193
1
--クシャトリラ・ユニコーン
72270339
1
--黒魔女ディアベルスター
99937011
1
--剣神官ムドラ
38814750
1
--
PSY
フレームギア・γ
74586817
1
--
PSY
フレームロード・Ω
02563463
1
--流離のグリフォンライダー
32731036
1
--深淵の獣ルベリオン
36521307
1
--斬機サーキュラー
78872731
1
--十二獣モルモラット
06602300
1
--重爆撃禽 ボム・フェネクス
63542003
1
--宿神像ケルドウ
09674034
1
--スネークアイ・エクセル
90241276
1
--蛇眼の炎燐
76145933
1
--スプライト・ブルー
35844557
1
--ソード・ライゼオル
90361010
1
--超重武者装留イワトオシ
37818794
1
--超魔導竜騎士-ドラグーン・オブ・レッドアイズ
04928565
1
--ティアラメンツ・クシャトリラ
00572850
1
--ティアラメンツ・シェイレーン
37961969
1
--ティアラメンツ・ハゥフニス
74078255
1
--ティアラメンツ・メイルゥ
73956664
1
--ティアラメンツ・レイノハート
91800273
1
--ディメンション・アトラクター
90953320
1
--
TG
ハイパー・ライブラリアン
91810826
1
--天盃龍チュンドラ
39064822
1
--トロイメア・ゴブリン
75433814
1
--
No
.
40
ギミック・パペット-ヘブンズ・ストリングス
17266660
1
--朱光の宣告者
06637331
1
--深淵の獣ドルイドヴルム
72656408
1
--深淵の獣バルドレイク
33854624
1
--深淵の獣マグナムート
80453041
1
--ファントム・オブ・ユベル
33396948
1
--封印されしエクゾディア
44519536
1
--封印されし者の左足
07902349
1
--封印されし者の左腕
08124921
1
--封印されし者の右足
70903634
1
--封印されし者の右腕
94689206
1
--ブロックドラゴン
24094258
1
--ヘビーメタルフォーゼ・エレクトラム
32061192
1
--
M
∀
LICE
<
P
>
Dormouse
60764609
1
--魔を刻むデモンスミス
77103950
1
--壱世壊=ペルレイノ
33782437
1
--一時休戦
01845204
1
--簡易融合
61292243
1
--
EMERGENCY
!
19613556
1
--大嵐
81439173
1
--おろかな埋葬
85106525
1
--篝火
84211599
1
--金満で謙虚な壺
23701465
1
--原初の種
80845034
1
--“罪宝狩りの悪魔”
30336082
1
--盃満ちる燦幻荘
83764718
1
--死者蘇生
15443125
1
--スプライト・スターター
07477101
1
--時空の七皇
52340444
1
--閃刀機-ホーネットビット
32807846
1
--増援
72892473
1
--手札抹殺
98567237
1
--刻まれし魔の詠聖
73628505
1
--テラ・フォーミング
11110587
1
--隣の芝刈り
18144506
1
--ハーピィの羽根帚
75500286
1
--封印の黄金櫃
07394770
1
--ブリリアント・フュージョン
73468603
1
--盆回し
65681983
1
--抹殺の指名者
71832012
1
--六世壊=パライゾス
01475311
1
--闇の誘惑
44362883
1
--烙印融合
92107604
1
--神碑の泉
27970830
1
--六武の門
02295440
1
--ワン・フォー・ワン
90846359
1
--群雄割拠
53334471
1
--御前試合
82732705
1
--スキルドレイン
24207889
1
--センサー万別
21076084
1
--トリックスター・リンカーネイション
58921041
1
--魔封じの芳香
23002292
1
--レッド・リブート
#semi limit
13533678
2
--スプライト・ジェット
23434538
2
--増殖する
G
35726888
2
--おろかな副葬
67723438
2
--緊急テレポート
49238328
2
--強欲で金満な壺
35261759
2
--強欲で貪欲な壺
48130397
2
--超融合
24224830
2
--墓穴の指名者
93600443
2
--マスク・チェンジ・セカンド
21347668
2
--ピュアリィ・スリーピィメモリー
!
2025
.
4
!
2025
.
4
#forbidden
#forbidden
20292186
0
--アーティファクト-デスサイズ
20292186
0
--アーティファクト-デスサイズ
...
@@ -8326,6 +8520,431 @@
...
@@ -8326,6 +8520,431 @@
53582587
2
--激流葬
53582587
2
--激流葬
29401950
2
--奈落の落とし穴
29401950
2
--奈落の落とし穴
!
2025
.
9
TCG
#forbidden
62320425
0
--
Agido
the
Ancient
Sentinel
20292186
0
--
Artifact
Scythe
73356503
0
--
Barrier
Statue
of
the
Stormwinds
09929398
0
--
Blackwing
-
Gofu
the
Vague
Shadow
94689206
0
--
Block
Dragon
69015963
0
--
Cyber
-
Stein
15341821
0
--
Dandylion
08903700
0
--
Djinn
Releaser
of
Rituals
51858306
0
--
Eclipse
Wyvern
55623480
0
--
Fairy
Tail
-
Snow
78706415
0
--
Fiber
Jar
93369354
0
--
Fishborg
Blaster
55204071
0
--
Gimmick
Puppet
Nightmare
75732622
0
--
Grinder
Golem
41855169
0
--
Jowgen
the
Spiritualist
25926710
0
--
Kelbek
the
Ancient
Vanguard
57421866
0
--
Level
Eater
34206604
0
--
Magical
Scientist
23434538
0
--
Maxx
"C"
96782886
0
--
Mind
Master
23558733
0
--
Phoenixian
Cluster
Amaryllis
01357146
0
--
Ronintoadin
91258852
0
--
SPYRAL
Master
Plan
88071625
0
--
The
Tyrant
Neptune
44910027
0
--
Victory
Dragon
17412721
0
--
Elder
Entity
Norden
43387895
0
--
Supreme
King
Dragon
Starving
Venom
92731385
0
--
Tearlaments
Kitkallos
04280258
0
--
Apollousa
,
Bow
of
the
Goddess
50588353
0
--
Crystron
Halqifibrax
98095162
0
--
Curious
,
the
Lightsworn
Dominion
59537380
0
--
Guardragon
Agarpain
86148577
0
--
Guardragon
Elpy
24094258
0
--
Heavymetalfoes
Electrumite
59934749
0
--
Isolde
,
Two
Tales
of
the
Noble
Knights
39064822
0
--
Knightmare
Goblin
65330383
0
--
Knightmare
Gryphon
03679218
0
--
Knightmare
Mermaid
30342076
0
--
Link
Decoder
85243784
0
--
Linkross
44097050
0
--
Mecha
Phantom
Beast
Auroradon
71818935
0
--
Moon
of
the
Closed
Heaven
25725326
0
--
Prank
-
Kids
Meow
-
Meow
-
Mu
70369116
0
--
Predaplant
Verte
Anaconda
72330894
0
--
Simorgh
,
Bird
of
Sovereignty
59859086
0
--
Splash
Mage
27381364
0
--
Spright
Elf
33918636
0
--
Superheavy
Samurai
Scarecrow
22593417
0
--
Topologic
Gumblar
Dragon
83152482
0
--
Union
Carrier
84815190
0
--
Baronne
de
Fleur
27548199
0
--
Borreload
Savage
Dragon
03040496
0
--
Chaos
Ruler
,
the
Chaotic
Magical
Dragon
62242678
0
--
Hot
Red
Dragon
Archfiend
King
Calamity
63101919
0
--
Tempest
Magician
21044178
0
--
Abyss
Dweller
00440556
0
--
Bahamut
Shark
27552504
0
--
Beatrice
,
Lady
of
the
Eternal
48626373
0
--
Kashtira
Arise
-
Heart
11398059
0
--
King
of
the
Feral
Imps
34086406
0
--
Lavalval
Chain
04423206
0
--
M
-
X
-
Saber
Invoker
54719828
0
--
Number
16
:
Shock
Master
10389142
0
--
Number
42
:
Galaxy
Tomahawk
35772782
0
--
Number
67
:
Pair
-
a
-
Dice
Smasher
63504681
0
--
Number
86
:
Heroic
Champion
-
Rhongomyniad
95474755
0
--
Number
89
:
Diablosis
the
Mind
Hacker
58820923
0
--
Number
95
:
Galaxy
-
Eyes
Dark
Matter
Dragon
52653092
0
--
Number
S0
:
Utopic
ZEXAL
34945480
0
--
Outer
Entity
Azathot
88581108
0
--
True
King
of
All
Calamities
81122844
0
--
Wind
-
Up
Carrier
Zenmaity
85115440
0
--
Zoodiac
Broadbull
69243953
0
--
Butterfly
Dagger
-
Elma
57953380
0
--
Card
of
Safe
Return
60682203
0
--
Cold
Wave
17375316
0
--
Confiscation
44763025
0
--
Delinquent
Duo
23557835
0
--
Dimension
Fusion
42703248
0
--
Giant
Trunade
79571449
0
--
Graceful
Charity
19613556
0
--
Heavy
Storm
35059553
0
--
Kaiser
Colosseum
85602018
0
--
Last
Will
34906152
0
--
Mass
Driver
46411259
0
--
Metamorphosis
41482598
0
--
Mirage
of
Nightmare
76375976
0
--
Mystic
Mine
89023486
0
--
Original
Sinful
Spoils
-
Snake
-
Eye
74191942
0
--
Painful
Choice
55144522
0
--
Pot
of
Greed
70828912
0
--
Premature
Burial
63789924
0
--
Smoke
Grenade
of
the
Thief
54447022
0
--
Soul
Charge
42829885
0
--
The
Forceful
Sentry
43262273
0
--
Appointer
of
the
Red
Lotus
01041278
0
--
Branded
Expulsion
61740673
0
--
Imperial
Order
28566710
0
--
Last
Turn
23002292
0
--
Red
Reboot
27174286
0
--
Return
from
the
Different
Dimension
93016201
0
--
Royal
Oppression
57585212
0
--
Self
-
Destruct
Button
03280747
0
--
Sixth
Sense
23516703
0
--
Summon
Limit
64697231
0
--
Trap
Dustshoot
80604091
0
--
Ultimate
Offering
05851097
0
--
Vanity
'
s
Emptiness
#limit
07902349
1
--
Left
Arm
of
the
Forbidden
One
44519536
1
--
Left
Leg
of
the
Forbidden
One
70903634
1
--
Right
Arm
of
the
Forbidden
One
08124921
1
--
Right
Leg
of
the
Forbidden
One
06728559
1
--
Archnemeses
Protos
76794549
1
--
Astrograph
Sorcerer
06637331
1
--
Bystial
Druiswurm
33854624
1
--
Bystial
Magnamhut
14536035
1
--
Dark
Grepher
91800273
1
--
Dimension
Shifter
33396948
1
--
Exodia
the
Forbidden
One
34022970
1
--
Ext
Ryzeal
63542003
1
--
Keldo
the
Sacred
Protector
32061192
1
--
Maliss
<
P
>
Dormouse
36521307
1
--
Mathmech
Circular
38572779
1
--
Miscellaneousaurus
99937011
1
--
Mudora
the
Sword
Oracle
38814750
1
--
PSY
-
Framegear
Gamma
20663556
1
--
Substitoad
37961969
1
--
Tearlaments
Havnis
74078255
1
--
Tearlaments
Merrli
00572850
1
--
Tearlaments
Scheiren
91810826
1
--
Tenpai
Dragon
Chundra
29302858
1
--
Vanquish
Soul
Razen
78872731
1
--
Zoodiac
Ratpier
46640168
1
--
Fiendsmith
'
s
Lacrima
39512984
1
--
Gem
-
Knight
Master
Diamond
80453041
1
--
Phantom
of
Yubel
41999284
1
--
Linkuriboh
73539069
1
--
Striker
Dragon
61665245
1
--
Summon
Sorceress
93896655
1
--
Sunavalon
Dryas
65563871
1
--
Sunvine
Healer
79606837
1
--
Herald
of
the
Arc
Light
74586817
1
--
PSY
-
Framelord
Omega
90953320
1
--
T
.
G
.
Hyper
Librarian
00581014
1
--
Daigusto
Emeral
75433814
1
--
Number
40
:
Gimmick
Puppet
of
Strings
69170557
1
--
Number
C40
:
Gimmick
Puppet
of
Dark
Strings
34909328
1
--
Ryzeal
Detonator
48905153
1
--
Zoodiac
Drident
85106525
1
--
Bonfire
07394770
1
--
Brilliant
Fusion
24224830
1
--
Called
by
the
Grave
72892473
1
--
Card
Destruction
59750328
1
--
Card
of
Demise
91623717
1
--
Chain
Strike
04031928
1
--
Change
of
Heart
99266988
1
--
Chaos
Space
67616300
1
--
Chicken
Game
65681983
1
--
Crossout
Designator
31552317
1
--
Crystron
Inclusion
15854426
1
--
Divine
Wind
of
Mist
Valley
95308449
1
--
Final
Countdown
81439173
1
--
Foolish
Burial
27970830
1
--
Gateway
of
the
Six
75500286
1
--
Gold
Sarcophagus
18144506
1
--
Harpie
'
s
Feather
Duster
66957584
1
--
Infernity
Launcher
01845204
1
--
Instant
Fusion
93946239
1
--
Into
the
Void
71650854
1
--
Magical
Mid
-
Breaker
Field
43040603
1
--
Monster
Gate
83764718
1
--
Monster
Reborn
72537897
1
--
Obedience
Schooled
33782437
1
--
One
Day
of
Peace
02295440
1
--
One
for
One
84211599
1
--
Pot
of
Prosperity
58577036
1
--
Reasoning
32807846
1
--
Reinforcement
of
the
Army
66730191
1
--
Sangen
Kaimen
30336082
1
--
Sangen
Summoning
24940422
1
--
Sekka
'
s
Light
73468603
1
--
Set
Rotation
52340444
1
--
Sky
Striker
Mecha
-
Hornet
Drones
71344451
1
--
Slash
Draw
45986603
1
--
Snatch
Steal
54562327
1
--
Stake
your
Soul
!
73628505
1
--
Terraforming
11110587
1
--
That
Grass
Looks
Greener
25311006
1
--
Triple
Tactics
Talent
58921041
1
--
Anti
-
Spell
Fragrance
53334471
1
--
Gozen
Match
32723153
1
--
Magical
Explosion
03734202
1
--
Naturia
Sacred
Tree
90846359
1
--
Rivalry
of
Warlords
82732705
1
--
Skill
Drain
41420027
1
--
Solemn
Judgment
24207889
1
--
There
Can
Be
Only
One
#semi limit
61901281
2
--
Black
Dragon
Collapserpent
08633261
2
--
Ice
Ryzeal
69272449
2
--
Maliss
<
P
>
White
Rabbit
35844557
2
--
Sword
Ryzeal
41165831
2
--
Unchained
Soul
of
Sharvara
99234526
2
--
White
Dragon
Wyverburster
44362883
2
--
Branded
Fusion
68337209
2
--
Maliss
in
Underground
55584558
2
--
Purrely
Delicious
Memory
21347668
2
--
Purrely
Sleepy
Memory
92107604
2
--
Runick
Fountain
!
2025
.
4
TCG
#forbidden
62320425
0
--
Agido
the
Ancient
Sentinel
20292186
0
--
Artifact
Scythe
73356503
0
--
Barrier
Statue
of
the
Stormwinds
09929398
0
--
Blackwing
-
Gofu
the
Vague
Shadow
94689206
0
--
Block
Dragon
69015963
0
--
Cyber
-
Stein
15341821
0
--
Dandylion
08903700
0
--
Djinn
Releaser
of
Rituals
51858306
0
--
Eclipse
Wyvern
55623480
0
--
Fairy
Tail
-
Snow
78706415
0
--
Fiber
Jar
93369354
0
--
Fishborg
Blaster
55204071
0
--
Gimmick
Puppet
Nightmare
67441435
0
--
Glow
-
Up
Bulb
75732622
0
--
Grinder
Golem
41855169
0
--
Jowgen
the
Spiritualist
25926710
0
--
Kelbek
the
Ancient
Vanguard
57421866
0
--
Level
Eater
34206604
0
--
Magical
Scientist
23434538
0
--
Maxx
"C"
96782886
0
--
Mind
Master
23558733
0
--
Phoenixian
Cluster
Amaryllis
01357146
0
--
Ronintoadin
91258852
0
--
SPYRAL
Master
Plan
88071625
0
--
The
Tyrant
Neptune
44910027
0
--
Victory
Dragon
17412721
0
--
Elder
Entity
Norden
46640168
0
--
Fiendsmith
'
s
Lacrima
43387895
0
--
Supreme
King
Dragon
Starving
Venom
92731385
0
--
Tearlaments
Kitkallos
04280258
0
--
Apollousa
,
Bow
of
the
Goddess
50588353
0
--
Crystron
Halqifibrax
98095162
0
--
Curious
,
the
Lightsworn
Dominion
59537380
0
--
Guardragon
Agarpain
86148577
0
--
Guardragon
Elpy
24094258
0
--
Heavymetalfoes
Electrumite
59934749
0
--
Isolde
,
Two
Tales
of
the
Noble
Knights
39064822
0
--
Knightmare
Goblin
65330383
0
--
Knightmare
Gryphon
03679218
0
--
Knightmare
Mermaid
30342076
0
--
Link
Decoder
85243784
0
--
Linkross
41999284
0
--
Linkuriboh
44097050
0
--
Mecha
Phantom
Beast
Auroradon
25725326
0
--
Prank
-
Kids
Meow
-
Meow
-
Mu
70369116
0
--
Predaplant
Verte
Anaconda
72330894
0
--
Simorgh
,
Bird
of
Sovereignty
27381364
0
--
Spright
Elf
61665245
0
--
Summon
Sorceress
33918636
0
--
Superheavy
Samurai
Scarecrow
22593417
0
--
Topologic
Gumblar
Dragon
83152482
0
--
Union
Carrier
84815190
0
--
Baronne
de
Fleur
27548199
0
--
Borreload
Savage
Dragon
03040496
0
--
Chaos
Ruler
,
the
Chaotic
Magical
Dragon
62242678
0
--
Hot
Red
Dragon
Archfiend
King
Calamity
63101919
0
--
Tempest
Magician
21044178
0
--
Abyss
Dweller
00440556
0
--
Bahamut
Shark
27552504
0
--
Beatrice
,
Lady
of
the
Eternal
48626373
0
--
Kashtira
Arise
-
Heart
34086406
0
--
Lavalval
Chain
04423206
0
--
M
-
X
-
Saber
Invoker
54719828
0
--
Number
16
:
Shock
Master
10389142
0
--
Number
42
:
Galaxy
Tomahawk
63504681
0
--
Number
86
:
Heroic
Champion
-
Rhongomyniad
95474755
0
--
Number
89
:
Diablosis
the
Mind
Hacker
58820923
0
--
Number
95
:
Galaxy
-
Eyes
Dark
Matter
Dragon
52653092
0
--
Number
S0
:
Utopic
ZEXAL
34945480
0
--
Outer
Entity
Azathot
88581108
0
--
True
King
of
All
Calamities
81122844
0
--
Wind
-
Up
Carrier
Zenmaity
85115440
0
--
Zoodiac
Broadbull
48905153
0
--
Zoodiac
Drident
69243953
0
--
Butterfly
Dagger
-
Elma
57953380
0
--
Card
of
Safe
Return
60682203
0
--
Cold
Wave
17375316
0
--
Confiscation
44763025
0
--
Delinquent
Duo
23557835
0
--
Dimension
Fusion
42703248
0
--
Giant
Trunade
79571449
0
--
Graceful
Charity
19613556
0
--
Heavy
Storm
35059553
0
--
Kaiser
Colosseum
85602018
0
--
Last
Will
34906152
0
--
Mass
Driver
46411259
0
--
Metamorphosis
41482598
0
--
Mirage
of
Nightmare
76375976
0
--
Mystic
Mine
89023486
0
--
Original
Sinful
Spoils
-
Snake
-
Eye
74191942
0
--
Painful
Choice
55144522
0
--
Pot
of
Greed
70828912
0
--
Premature
Burial
63789924
0
--
Smoke
Grenade
of
the
Thief
54447022
0
--
Soul
Charge
42829885
0
--
The
Forceful
Sentry
43262273
0
--
Appointer
of
the
Red
Lotus
01041278
0
--
Branded
Expulsion
61740673
0
--
Imperial
Order
28566710
0
--
Last
Turn
23002292
0
--
Red
Reboot
27174286
0
--
Return
from
the
Different
Dimension
93016201
0
--
Royal
Oppression
57585212
0
--
Self
-
Destruct
Button
03280747
0
--
Sixth
Sense
23516703
0
--
Summon
Limit
64697231
0
--
Trap
Dustshoot
80604091
0
--
Ultimate
Offering
05851097
0
--
Vanity
'
s
Emptiness
#limit
07902349
1
--
Left
Arm
of
the
Forbidden
One
44519536
1
--
Left
Leg
of
the
Forbidden
One
70903634
1
--
Right
Arm
of
the
Forbidden
One
08124921
1
--
Right
Leg
of
the
Forbidden
One
06728559
1
--
Archnemeses
Protos
76794549
1
--
Astrograph
Sorcerer
06637331
1
--
Bystial
Druiswurm
33854624
1
--
Bystial
Magnamhut
14536035
1
--
Dark
Grepher
91800273
1
--
Dimension
Shifter
33396948
1
--
Exodia
the
Forbidden
One
63542003
1
--
Keldo
the
Sacred
Protector
21377582
1
--
Master
Peace
,
the
True
Dracoslaying
King
36521307
1
--
Mathmech
Circular
38572779
1
--
Miscellaneousaurus
99937011
1
--
Mudora
the
Sword
Oracle
12958919
1
--
Phantom
Skyblaster
38814750
1
--
PSY
-
Framegear
Gamma
20663556
1
--
Substitoad
37961969
1
--
Tearlaments
Havnis
74078255
1
--
Tearlaments
Merrli
00572850
1
--
Tearlaments
Scheiren
91810826
1
--
Tenpai
Dragon
Chundra
78872731
1
--
Zoodiac
Ratpier
39512984
1
--
Gem
-
Knight
Master
Diamond
80453041
1
--
Phantom
of
Yubel
73539069
1
--
Striker
Dragon
93896655
1
--
Sunavalon
Dryas
65563871
1
--
Sunvine
Healer
74586817
1
--
PSY
-
Framelord
Omega
90953320
1
--
T
.
G
.
Hyper
Librarian
00581014
1
--
Daigusto
Emeral
75433814
1
--
Number
40
:
Gimmick
Puppet
of
Strings
69170557
1
--
Number
C40
:
Gimmick
Puppet
of
Dark
Strings
34909328
1
--
Ryzeal
Detonator
85106525
1
--
Bonfire
44362883
1
--
Branded
Fusion
07394770
1
--
Brilliant
Fusion
24224830
1
--
Called
by
the
Grave
72892473
1
--
Card
Destruction
59750328
1
--
Card
of
Demise
91623717
1
--
Chain
Strike
04031928
1
--
Change
of
Heart
99266988
1
--
Chaos
Space
67616300
1
--
Chicken
Game
65681983
1
--
Crossout
Designator
15854426
1
--
Divine
Wind
of
Mist
Valley
13035077
1
--
Dragonic
Diagram
95308449
1
--
Final
Countdown
81439173
1
--
Foolish
Burial
27970830
1
--
Gateway
of
the
Six
75500286
1
--
Gold
Sarcophagus
18144506
1
--
Harpie
'
s
Feather
Duster
66957584
1
--
Infernity
Launcher
01845204
1
--
Instant
Fusion
93946239
1
--
Into
the
Void
71650854
1
--
Magical
Mid
-
Breaker
Field
43040603
1
--
Monster
Gate
83764718
1
--
Monster
Reborn
33782437
1
--
One
Day
of
Peace
02295440
1
--
One
for
One
84211599
1
--
Pot
of
Prosperity
58577036
1
--
Reasoning
32807846
1
--
Reinforcement
of
the
Army
66730191
1
--
Sangen
Kaimen
30336082
1
--
Sangen
Summoning
24940422
1
--
Sekka
'
s
Light
73468603
1
--
Set
Rotation
52340444
1
--
Sky
Striker
Mecha
-
Hornet
Drones
71344451
1
--
Slash
Draw
45986603
1
--
Snatch
Steal
73628505
1
--
Terraforming
11110587
1
--
That
Grass
Looks
Greener
25311006
1
--
Triple
Tactics
Talent
46060017
1
--
Zoodiac
Barrage
58921041
1
--
Anti
-
Spell
Fragrance
53334471
1
--
Gozen
Match
32723153
1
--
Magical
Explosion
03734202
1
--
Naturia
Sacred
Tree
90846359
1
--
Rivalry
of
Warlords
82732705
1
--
Skill
Drain
24207889
1
--
There
Can
Be
Only
One
#semi limit
61901281
2
--
Black
Dragon
Collapserpent
34022970
2
--
Ext
Ryzeal
08633261
2
--
Ice
Ryzeal
32061192
2
--
Maliss
<
P
>
Dormouse
69272449
2
--
Maliss
<
P
>
White
Rabbit
33508719
2
--
Morphing
Jar
09674034
2
--
Snake
-
Eye
Ash
90241276
2
--
Snake
-
Eyes
Poplar
35844557
2
--
Sword
Ryzeal
41165831
2
--
Unchained
Soul
of
Sharvara
99234526
2
--
White
Dragon
Wyverburster
14532163
2
--
Lightning
Storm
68337209
2
--
Maliss
in
Underground
55584558
2
--
Purrely
Delicious
Memory
21347668
2
--
Purrely
Sleepy
Memory
92107604
2
--
Runick
Fountain
!
2024
.
12
TCG
!
2024
.
12
TCG
#forbidden
#forbidden
62320425
0
--
Agido
the
Ancient
Sentinel
62320425
0
--
Agido
the
Ancient
Sentinel
...
...
strings.conf
View file @
7fa8ba2c
...
@@ -671,6 +671,8 @@
...
@@ -671,6 +671,8 @@
!
counter
0
x6e
四季指示物
!
counter
0
x6e
四季指示物
!
counter
0
x6f
龋齿指示物
!
counter
0
x6f
龋齿指示物
!
counter
0
x70
盘子指示物
!
counter
0
x70
盘子指示物
!
counter
0
x71
纠罪指示物
!
counter
0
x1072
少女指示物
#setnames, using tab for comment
#setnames, using tab for comment
!
setname
0
x1
正义盟军
A
・
O
・
J
!
setname
0
x1
正义盟军
A
・
O
・
J
!
setname
0
x2
次世代 ジェネクス
!
setname
0
x2
次世代 ジェネクス
...
@@ -1240,7 +1242,7 @@
...
@@ -1240,7 +1242,7 @@
!
setname
0
x1b4
时空 タキオン
!
setname
0
x1b4
时空 タキオン
!
setname
0
x1b5
蓝泪 青い涙
!
setname
0
x1b5
蓝泪 青い涙
!
setname
0
x1b6
石版
!
setname
0
x1b6
石版
!
setname
0
x1b7
拟箱掳尸
Mimighoul
!
setname
0
x1b7
迷拟宝箱鬼 ミミグル
!
setname
0
x1b8
鲨 シャーク
!
setname
0
x1b8
鲨 シャーク
!
setname
0
x11b8
鲨龙兽 シャーク・ドレイク
!
setname
0
x11b8
鲨龙兽 シャーク・ドレイク
!
setname
0
x1b9
原石
!
setname
0
x1b9
原石
...
@@ -1253,12 +1255,12 @@
...
@@ -1253,12 +1255,12 @@
!
setname
0
x1c0
龙华 竜華
!
setname
0
x1c0
龙华 竜華
!
setname
0
x1c1
阿尔戈☆群星
ARG
☆
S
!
setname
0
x1c1
阿尔戈☆群星
ARG
☆
S
!
setname
0
x1c2
喷水引擎 アクア・ジェット
!
setname
0
x1c2
喷水引擎 アクア・ジェット
!
setname
0
x1c3
巳剑
Mitsurugi
!
setname
0
x1c3
巳剑
巳剣
!
setname
0
x1c4
征龙 征竜
!
setname
0
x1c4
征龙 征竜
!
setname
0
x1c5
再世 リジェネシス
!
setname
0
x1c5
再世 リジェネシス
!
setname
0
x1c6
统王 ドミナス
!
setname
0
x1c6
统王 ドミナス
!
setname
0
x1c7
塞勒凯特
Serket
!
setname
0
x1c7
塞勒凯特
セルケト
!
setname
0
x1c8
阿匹卜
Apophis
!
setname
0
x1c8
阿匹卜
アポピス
!
setname
0
x1c9
星辰 ドラゴンテイル
!
setname
0
x1c9
星辰 ドラゴンテイル
!
setname
0
x1ca
味美喵 ヤミー
!
setname
0
x1ca
味美喵 ヤミー
!
setname
0
x1cb
K9
!
setname
0
x1cb
K9
...
@@ -1269,3 +1271,7 @@
...
@@ -1269,3 +1271,7 @@
!
setname
0
x1d0
死伟王 死偉王
!
setname
0
x1d0
死伟王 死偉王
!
setname
0
x1d1
绚岚 絢嵐
!
setname
0
x1d1
绚岚 絢嵐
!
setname
0
x1d2
终刻 ドゥームズ
!
setname
0
x1d2
终刻 ドゥームズ
!
setname
0
x1d3
不可见之手 ヘカトンケイル
!
setname
0
x1d4
纠罪巧 糾罪巧
!
setname
0
x1d5
杀手级调整曲 キラーチューン
!
setname
0
x1d6
树熊 コアラ
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