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
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
赤子奈落
ygopro
Commits
927c847a
Commit
927c847a
authored
Dec 30, 2024
by
nanahira
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into server
parents
b6675cbc
d884e77c
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
474 additions
and
493 deletions
+474
-493
cards.cdb
cards.cdb
+0
-0
gframe/replay.cpp
gframe/replay.cpp
+18
-37
gframe/replay.h
gframe/replay.h
+15
-12
gframe/replay_mode.cpp
gframe/replay_mode.cpp
+2
-2
gframe/single_duel.cpp
gframe/single_duel.cpp
+1
-1
gframe/single_mode.cpp
gframe/single_mode.cpp
+2
-2
gframe/tag_duel.cpp
gframe/tag_duel.cpp
+1
-1
lflist.conf
lflist.conf
+431
-434
ocgcore
ocgcore
+1
-1
script
script
+1
-1
strings.conf
strings.conf
+2
-2
No files found.
cards.cdb
View file @
927c847a
No preview for this file type
gframe/replay.cpp
View file @
927c847a
...
@@ -58,7 +58,6 @@ void Replay::BeginRecord() {
...
@@ -58,7 +58,6 @@ void Replay::BeginRecord() {
#ifdef YGOPRO_SERVER_MODE
#ifdef YGOPRO_SERVER_MODE
}
}
#endif //YGOPRO_SERVER_MODE
#endif //YGOPRO_SERVER_MODE
pwrite
=
replay_data
;
replay_size
=
0
;
replay_size
=
0
;
comp_size
=
0
;
comp_size
=
0
;
is_replaying
=
false
;
is_replaying
=
false
;
...
@@ -77,13 +76,13 @@ void Replay::WriteHeader(ReplayHeader& header) {
...
@@ -77,13 +76,13 @@ void Replay::WriteHeader(ReplayHeader& header) {
fflush
(
fp
);
fflush
(
fp
);
#endif
#endif
}
}
void
Replay
::
WriteData
(
const
void
*
data
,
in
t
length
,
bool
flush
)
{
void
Replay
::
WriteData
(
const
void
*
data
,
size_
t
length
,
bool
flush
)
{
if
(
!
is_recording
)
if
(
!
is_recording
)
return
;
return
;
if
(
length
<
0
||
(
int
)(
pwrite
-
replay_data
)
+
length
>
MAX_REPLAY_SIZE
)
if
(
replay_size
+
length
>
MAX_REPLAY_SIZE
)
return
;
return
;
std
::
memcpy
(
pwrit
e
,
data
,
length
);
std
::
memcpy
(
replay_data
+
replay_siz
e
,
data
,
length
);
pwrit
e
+=
length
;
replay_siz
e
+=
length
;
#ifdef YGOPRO_SERVER_MODE
#ifdef YGOPRO_SERVER_MODE
if
(
!
(
replay_mode
&
REPLAY_MODE_SAVE_IN_SERVER
))
return
;
if
(
!
(
replay_mode
&
REPLAY_MODE_SAVE_IN_SERVER
))
return
;
#endif
#endif
...
@@ -96,14 +95,8 @@ void Replay::WriteData(const void* data, int length, bool flush) {
...
@@ -96,14 +95,8 @@ void Replay::WriteData(const void* data, int length, bool flush) {
fflush
(
fp
);
fflush
(
fp
);
#endif
#endif
}
}
void
Replay
::
WriteInt32
(
int
data
,
bool
flush
)
{
void
Replay
::
WriteInt32
(
int32_t
data
,
bool
flush
)
{
WriteData
(
&
data
,
sizeof
data
,
flush
);
Write
<
int32_t
>
(
data
,
flush
);
}
void
Replay
::
WriteInt16
(
short
data
,
bool
flush
)
{
WriteData
(
&
data
,
sizeof
data
,
flush
);
}
void
Replay
::
WriteInt8
(
char
data
,
bool
flush
)
{
WriteData
(
&
data
,
sizeof
data
,
flush
);
}
}
void
Replay
::
Flush
()
{
void
Replay
::
Flush
()
{
if
(
!
is_recording
)
if
(
!
is_recording
)
...
@@ -130,7 +123,6 @@ void Replay::EndRecord() {
...
@@ -130,7 +123,6 @@ void Replay::EndRecord() {
#ifdef YGOPRO_SERVER_MODE
#ifdef YGOPRO_SERVER_MODE
}
}
#endif
#endif
replay_size
=
pwrite
-
replay_data
;
pheader
.
datasize
=
replay_size
;
pheader
.
datasize
=
replay_size
;
pheader
.
flag
|=
REPLAY_COMPRESSED
;
pheader
.
flag
|=
REPLAY_COMPRESSED
;
size_t
propsize
=
5
;
size_t
propsize
=
5
;
...
@@ -164,7 +156,7 @@ bool Replay::OpenReplay(const wchar_t* name) {
...
@@ -164,7 +156,7 @@ bool Replay::OpenReplay(const wchar_t* name) {
if
(
!
rfp
)
if
(
!
rfp
)
return
false
;
return
false
;
pdata
=
replay_data
;
data_position
=
0
;
is_recording
=
false
;
is_recording
=
false
;
is_replaying
=
false
;
is_replaying
=
false
;
replay_size
=
0
;
replay_size
=
0
;
...
@@ -254,37 +246,26 @@ bool Replay::ReadName(wchar_t* data) {
...
@@ -254,37 +246,26 @@ bool Replay::ReadName(wchar_t* data) {
BufferIO
::
CopyWStr
(
buffer
,
data
,
20
);
BufferIO
::
CopyWStr
(
buffer
,
data
,
20
);
return
true
;
return
true
;
}
}
bool
Replay
::
ReadData
(
void
*
data
,
int
length
)
{
void
Replay
::
ReadHeader
(
ReplayHeader
&
header
)
{
header
=
pheader
;
}
bool
Replay
::
ReadData
(
void
*
data
,
size_t
length
)
{
if
(
!
is_replaying
)
if
(
!
is_replaying
)
return
false
;
return
false
;
if
(
length
<
0
)
if
(
data_position
+
length
>
replay_size
)
{
return
false
;
if
((
int
)(
pdata
-
replay_data
)
+
length
>
(
int
)
replay_size
)
{
is_replaying
=
false
;
is_replaying
=
false
;
return
false
;
return
false
;
}
}
std
::
memcpy
(
data
,
pdata
,
length
);
if
(
length
)
pdata
+=
length
;
std
::
memcpy
(
data
,
&
replay_data
[
data_position
],
length
);
data_position
+=
length
;
return
true
;
return
true
;
}
}
template
<
typename
T
>
int32_t
Replay
::
ReadInt32
()
{
T
Replay
::
ReadValue
()
{
return
Read
<
int32_t
>
();
T
ret
{};
if
(
!
ReadData
(
&
ret
,
sizeof
ret
))
return
-
1
;
return
ret
;
}
int
Replay
::
ReadInt32
()
{
return
ReadValue
<
int32_t
>
();
}
short
Replay
::
ReadInt16
()
{
return
ReadValue
<
int16_t
>
();
}
char
Replay
::
ReadInt8
()
{
return
ReadValue
<
char
>
();
}
}
void
Replay
::
Rewind
()
{
void
Replay
::
Rewind
()
{
pdata
=
replay_data
;
data_position
=
0
;
}
}
}
}
gframe/replay.h
View file @
927c847a
...
@@ -40,10 +40,12 @@ public:
...
@@ -40,10 +40,12 @@ public:
// record
// record
void
BeginRecord
();
void
BeginRecord
();
void
WriteHeader
(
ReplayHeader
&
header
);
void
WriteHeader
(
ReplayHeader
&
header
);
void
WriteData
(
const
void
*
data
,
int
length
,
bool
flush
=
true
);
void
WriteData
(
const
void
*
data
,
size_t
length
,
bool
flush
=
true
);
void
WriteInt32
(
int
data
,
bool
flush
=
true
);
template
<
typename
T
>
void
WriteInt16
(
short
data
,
bool
flush
=
true
);
void
Write
(
T
data
,
bool
flush
=
true
)
{
void
WriteInt8
(
char
data
,
bool
flush
=
true
);
WriteData
(
&
data
,
sizeof
(
T
),
flush
);
}
void
WriteInt32
(
int32_t
data
,
bool
flush
=
true
);
void
Flush
();
void
Flush
();
void
EndRecord
();
void
EndRecord
();
void
SaveReplay
(
const
wchar_t
*
name
);
void
SaveReplay
(
const
wchar_t
*
name
);
...
@@ -55,13 +57,15 @@ public:
...
@@ -55,13 +57,15 @@ public:
static
bool
RenameReplay
(
const
wchar_t
*
oldname
,
const
wchar_t
*
newname
);
static
bool
RenameReplay
(
const
wchar_t
*
oldname
,
const
wchar_t
*
newname
);
bool
ReadNextResponse
(
unsigned
char
resp
[]);
bool
ReadNextResponse
(
unsigned
char
resp
[]);
bool
ReadName
(
wchar_t
*
data
);
bool
ReadName
(
wchar_t
*
data
);
//
void ReadHeader(ReplayHeader& header);
void
ReadHeader
(
ReplayHeader
&
header
);
bool
ReadData
(
void
*
data
,
in
t
length
);
bool
ReadData
(
void
*
data
,
size_
t
length
);
template
<
typename
T
>
template
<
typename
T
>
T
ReadValue
();
T
Read
()
{
int
ReadInt32
();
T
ret
{};
short
ReadInt16
();
ReadData
(
&
ret
,
sizeof
(
T
));
char
ReadInt8
();
return
ret
;
}
int32_t
ReadInt32
();
void
Rewind
();
void
Rewind
();
FILE
*
fp
{
nullptr
};
FILE
*
fp
{
nullptr
};
...
@@ -76,8 +80,7 @@ public:
...
@@ -76,8 +80,7 @@ public:
private:
private:
unsigned
char
*
replay_data
;
unsigned
char
*
replay_data
;
size_t
replay_size
{};
size_t
replay_size
{};
unsigned
char
*
pwrite
{};
size_t
data_position
{};
unsigned
char
*
pdata
{};
bool
is_recording
{};
bool
is_recording
{};
bool
is_replaying
{};
bool
is_replaying
{};
};
};
...
...
gframe/replay_mode.cpp
View file @
927c847a
...
@@ -230,8 +230,8 @@ bool ReplayMode::StartDuel() {
...
@@ -230,8 +230,8 @@ bool ReplayMode::StartDuel() {
}
}
}
else
{
}
else
{
char
filename
[
256
];
char
filename
[
256
];
int
slen
=
cur_replay
.
ReadInt16
();
auto
slen
=
cur_replay
.
Read
<
uint16_t
>
();
if
(
slen
<
0
||
slen
>
255
)
{
if
(
slen
>
sizeof
(
filename
)
-
1
)
{
return
false
;
return
false
;
}
}
cur_replay
.
ReadData
(
filename
,
slen
);
cur_replay
.
ReadData
(
filename
,
slen
);
...
...
gframe/single_duel.cpp
View file @
927c847a
...
@@ -1797,7 +1797,7 @@ void SingleDuel::GetResponse(DuelPlayer* dp, unsigned char* pdata, unsigned int
...
@@ -1797,7 +1797,7 @@ void SingleDuel::GetResponse(DuelPlayer* dp, unsigned char* pdata, unsigned int
if
(
len
>
SIZE_RETURN_VALUE
)
if
(
len
>
SIZE_RETURN_VALUE
)
len
=
SIZE_RETURN_VALUE
;
len
=
SIZE_RETURN_VALUE
;
std
::
memcpy
(
resb
,
pdata
,
len
);
std
::
memcpy
(
resb
,
pdata
,
len
);
last_replay
.
Write
Int8
(
len
);
last_replay
.
Write
<
uint8_t
>
(
len
);
last_replay
.
WriteData
(
resb
,
len
);
last_replay
.
WriteData
(
resb
,
len
);
set_responseb
(
pduel
,
resb
);
set_responseb
(
pduel
,
resb
);
players
[
dp
->
type
]
->
state
=
0xff
;
players
[
dp
->
type
]
->
state
=
0xff
;
...
...
gframe/single_mode.cpp
View file @
927c847a
...
@@ -25,7 +25,7 @@ void SingleMode::StopPlay(bool is_exiting) {
...
@@ -25,7 +25,7 @@ void SingleMode::StopPlay(bool is_exiting) {
void
SingleMode
::
SetResponse
(
unsigned
char
*
resp
,
unsigned
int
len
)
{
void
SingleMode
::
SetResponse
(
unsigned
char
*
resp
,
unsigned
int
len
)
{
if
(
!
pduel
)
if
(
!
pduel
)
return
;
return
;
last_replay
.
Write
Int8
(
len
);
last_replay
.
Write
<
uint8_t
>
(
len
);
last_replay
.
WriteData
(
resp
,
len
);
last_replay
.
WriteData
(
resp
,
len
);
set_responseb
(
pduel
,
resp
);
set_responseb
(
pduel
,
resp
);
}
}
...
@@ -122,7 +122,7 @@ int SingleMode::SinglePlayThread() {
...
@@ -122,7 +122,7 @@ int SingleMode::SinglePlayThread() {
last_replay
.
WriteInt32
(
start_hand
,
false
);
last_replay
.
WriteInt32
(
start_hand
,
false
);
last_replay
.
WriteInt32
(
draw_count
,
false
);
last_replay
.
WriteInt32
(
draw_count
,
false
);
last_replay
.
WriteInt32
(
opt
,
false
);
last_replay
.
WriteInt32
(
opt
,
false
);
last_replay
.
Write
Int16
(
slen
,
false
);
last_replay
.
Write
<
uint16_t
>
(
slen
,
false
);
last_replay
.
WriteData
(
filename
,
slen
,
false
);
last_replay
.
WriteData
(
filename
,
slen
,
false
);
last_replay
.
Flush
();
last_replay
.
Flush
();
start_duel
(
pduel
,
opt
);
start_duel
(
pduel
,
opt
);
...
...
gframe/tag_duel.cpp
View file @
927c847a
...
@@ -1894,7 +1894,7 @@ void TagDuel::GetResponse(DuelPlayer* dp, unsigned char* pdata, unsigned int len
...
@@ -1894,7 +1894,7 @@ void TagDuel::GetResponse(DuelPlayer* dp, unsigned char* pdata, unsigned int len
if
(
len
>
SIZE_RETURN_VALUE
)
if
(
len
>
SIZE_RETURN_VALUE
)
len
=
SIZE_RETURN_VALUE
;
len
=
SIZE_RETURN_VALUE
;
std
::
memcpy
(
resb
,
pdata
,
len
);
std
::
memcpy
(
resb
,
pdata
,
len
);
last_replay
.
Write
Int8
(
len
);
last_replay
.
Write
<
uint8_t
>
(
len
);
last_replay
.
WriteData
(
resb
,
len
);
last_replay
.
WriteData
(
resb
,
len
);
set_responseb
(
pduel
,
resb
);
set_responseb
(
pduel
,
resb
);
players
[
dp
->
type
]
->
state
=
0xff
;
players
[
dp
->
type
]
->
state
=
0xff
;
...
...
lflist.conf
View file @
927c847a
#[2025.1][2024.12 TCG][2024.10][2024.
9 TCG][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.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.1][2024.12 TCG][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.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
.
1
!
2025
.
1
#forbidden
#forbidden
21044178
0
--深淵に潜む者
62320425
0
--古衛兵アギド
91869203
0
--アマゾネスの射手
73356503
0
--烈風の結界像
27552504
0
--永遠の淑女 ベアトリーチェ
09929398
0
--BF-朧影のゴウフウ
69243953
0
--蝶の短剣-エルマ
11384280
0
--キャノン・ソルジャー
14702066
0
--メガキャノン・ソルジャー
57953380
0
--生還の宝札
95727991
0
--カタパルト・タートル
03040496
0
--混沌魔龍 カオス・ルーラー
60682203
0
--大寒波
17375316
0
--押収
50588353
0
--水晶機巧-ハリファイバー
69015963
0
--デビル・フランケン
15341821
0
--ダンディライオン
44763025
0
--いたずら好きな双子悪魔
23557835
0
--次元融合
31423101
0
--神剣-フェニックスブレード
08903700
0
--儀式魔人リリーサー
51858306
0
--エクリプス・ワイバーン
17412721
0
--旧神ノーデン
78706415
0
--ファイバーポッド
93369354
0
--フィッシュボーグ-ガンナー
42703248
0
--ハリケーン
79571449
0
--天使の施し
75732622
0
--トーチ・ゴーレム
59537380
0
--守護竜アガーペイン
86148577
0
--守護竜エルピィ
62242678
0
--琰魔竜王 レッド・デーモン・カラミティ
61740673
0
--王宮の勅命
35059553
0
--カイザーコロシアム
32909498
0
--クシャトリラ・フェンリル
25926710
0
--古尖兵ケルベク
39064822
0
--トロイメア・ゴブリン
03679218
0
--トロイメア・マーメイド
85602018
0
--遺言状
28566710
0
--ラストバトル!
34086406
0
--ラヴァルバル・チェイン
57421866
0
--レベル・スティーラー
17178486
0
--ライフチェンジャー
85243784
0
--リンクロス
32723153
0
--マジカル・エクスプロージョン
34206604
0
--魔導サイエンティスト
34906152
0
--マスドライバー
46411259
0
--突然変異
96782886
0
--メンタルマスター
41482598
0
--悪夢の蜃気楼
76375976
0
--魔鍾洞
54719828
0
--No.16 色の支配者ショック・ルーラー
63504681
0
--No.86 H-C ロンゴミアント
58820923
0
--No.95 ギャラクシーアイズ・ダークマター・ドラゴン
52653092
0
--SNo.0 ホープ・ゼアル
34945480
0
--外神アザトート
74191942
0
--苦渋の選択
23558733
0
--フェニキシアン・クラスター・アマリリス
55144522
0
--強欲な壺
70369116
0
--捕食植物ヴェルテ・アナコンダ
70828912
0
--早すぎた埋葬
27174286
0
--異次元からの帰還
93016201
0
--王宮の弾圧
03280747
0
--第六感
63789924
0
--盗人の煙玉
54447022
0
--ソウル・チャージ
27381364
0
--スプライト・エルフ
20663556
0
--イレカエル
77679716
0
--超重武者装留ブレイク・アーマー
92731385
0
--ティアラメンツ・キトカロス
63101919
0
--マジックテンペスター
42829885
0
--強引な番兵
88071625
0
--The tyrant NEPTUNE
90809975
0
--餅カエル
79875176
0
--トゥーン・キャノン・ソルジャー
22593417
0
--トポロジック・ガンブラー・ドラゴン
64697231
0
--ダスト・シュート
88581108
0
--真竜皇V.F.D.
80604091
0
--血の代償
83152482
0
--ユニオン・キャリアー
05851097
0
--虚無空間
44910027
0
--ヴィクトリー・ドラゴン
02563463
0
--流離のグリフォンライダー
16923472
0
--ゼンマイハンター
85115440
0
--十二獣ブルホーン
#limit
01475311
1
--闇の誘惑
20292186
1
--アーティファクト-デスサイズ
76794549
1
--アストログラフ・マジシャン
06602300
1
--重爆撃禽 ボム・フェネクス
94689206
1
--ブロックドラゴン
85106525
1
--篝火
44362883
1
--烙印融合
07394770
1
--ブリリアント・フュージョン
72656408
1
--深淵の獣バルドレイク
06637331
1
--深淵の獣ドルイドヴルム
33854624
1
--深淵の獣マグナムート
72892473
1
--手札抹殺
65681983
1
--抹殺の指名者
34124316
1
--サイバーポッド
72270339
1
--黒魔女ディアベルスター
61292243
1
--EMERGENCY!
34022970
1
--エクス・ライゼオル
33396948
1
--封印されしエクゾディア
60764609
1
--魔を刻むデモンスミス
98567237
1
--刻まれし魔の詠聖
81439173
1
--おろかな埋葬
27970830
1
--六武の門
75500286
1
--封印の黄金櫃
53334471
1
--御前試合
18144506
1
--ハーピィの羽根帚
19613556
1
--大嵐
24094258
1
--ヘビーメタルフォーゼ・エレクトラム
17266660
1
--朱光の宣告者
01845204
1
--簡易融合
68304193
1
--クシャトリラ・ユニコーン
63542003
1
--宿神像ケルドウ
07902349
1
--封印されし者の左腕
44519536
1
--封印されし者の左足
93600443
1
--マスク・チェンジ・セカンド
36521307
1
--斬機サーキュラー
83764718
1
--死者蘇生
99937011
1
--剣神官ムドラ
75433814
1
--No.40 ギミック・パペット-ヘブンズ・ストリングス
33782437
1
--一時休戦
02295440
1
--ワン・フォー・ワン
38814750
1
--PSYフレームギア・γ
74586817
1
--PSYフレームロード・Ω
80453041
1
--ファントム・オブ・ユベル
84211599
1
--金満で謙虚な壺
23701465
1
--原初の種
71832012
1
--六世壊=パライゾス
77103950
1
--壱世壊=ペルレイノ
21347668
1
--ピュアリィ・スリーピィメモリー
23002292
1
--レッド・リブート
37818794
1
--超魔導竜騎士-ドラグーン・オブ・レッドアイズ
32807846
1
--増援
70903634
1
--封印されし者の右腕
08124921
1
--封印されし者の右足
90846359
1
--群雄割拠
92107604
1
--神碑の泉
29301450
1
--S:Pリトルナイト
30336082
1
--盃満ちる燦幻荘
73468603
1
--盆回し
82732705
1
--スキルドレイン
52340444
1
--閃刀機-ホーネットビット
09674034
1
--スネークアイ・エクセル
90241276
1
--蛇眼の炎燐
76145933
1
--スプライト・ブルー
13533678
1
--スプライト・ジェット
15443125
1
--スプライト・スターター
23516703
1
--サモンリミッター
90361010
1
--超重武者装留イワトオシ
90953320
1
--TG ハイパー・ライブラリアン
37961969
1
--ティアラメンツ・ハゥフニス
04928565
1
--ティアラメンツ・クシャトリラ
74078255
1
--ティアラメンツ・メイルゥ
73956664
1
--ティアラメンツ・レイノハート
00572850
1
--ティアラメンツ・シェイレーン
91810826
1
--天盃龍チュンドラ
73628505
1
--テラ・フォーミング
32731036
1
--深淵の獣ルベリオン
24207889
1
--センサー万別
21076084
1
--トリックスター・リンカーネイション
80845034
1
--“罪宝狩りの悪魔”
48905153
1
--十二獣ドランシア
78872731
1
--十二獣モルモラット
#semi limit
92714517
2
--ビッグウェルカム・ラビュリンス
24224830
2
--墓穴の指名者
12289247
2
--クロノグラフ・マジシャン
91800273
2
--ディメンション・アトラクター
67723438
2
--緊急テレポート
02526224
2
--炎王神獣 キリン
35726888
2
--おろかな副葬
52947044
2
--フュージョン・デステニー
21377582
2
--真竜剣皇マスターP
23434538
2
--増殖するG
33508719
2
--メタモルポット
93729896
2
--ナイトメア・スローン
17330916
2
--EMモンキーボード
35261759
2
--強欲で貪欲な壺
49238328
2
--強欲で金満な壺
65734501
2
--R-ACEエアホイスター
07477101
2
--時空の七皇
45986603
2
--強奪
81275020
2
--SRベイゴマックス
48130397
2
--超融合
11110587
2
--隣の芝刈り
46060017
2
--十二獣の会局
!
2024
.
12
TCG
#forbidden
62320425
0
--
Agido
the
Ancient
Sentry
04280258
0
--
Apollousa
,
Bow
of
the
Goddess
04280259
0
--
Apollousa
,
Bow
of
the
Goddess
43262273
0
--
Appointer
of
the
Red
Lotus
20292186
0
--
Artifact
Scythe
84815190
0
--
Baronne
de
Fleur
73356503
0
--
Barrier
Statue
of
the
Stormwinds
27552504
0
--
Beatrice
,
Lady
of
the
Eternal
09929398
0
--
Blackwing
-
Gofu
the
Vague
Shadow
94689206
0
--
Block
Dragon
27548199
0
--
Borreload
Savage
Dragon
01041278
0
--
Branded
Expulsion
07394770
0
--
Brilliant
Fusion
69243953
0
--
Butterfly
Dagger
-
Elma
57953380
0
--
Card
of
Safe
Return
03040496
0
--
Chaos
Ruler
,
the
Chaotic
Magical
Dragon
60682203
0
--
Cold
Wave
17375316
0
--
Confiscation
50588353
0
--
Crystron
Halqifibrax
98095162
0
--
Curious
,
the
Lightsworn
Dominion
69015963
0
--
Cyber
-
Stein
15341821
0
--
Dandylion
44763025
0
--
Delinquent
Duo
23557835
0
--
Dimension
Fusion
08903700
0
--
Djinn
Releaser
of
Rituals
51858306
0
--
Eclipse
Wyvern
17412721
0
--
Elder
Entity
Norden
55623480
0
--
Fairy
Tail
-
Snow
78706415
0
--
Fiber
Jar
46640168
0
--
Fiendsmith
'
s
Lacrima
93369354
0
--
Fishborg
Blaster
42703248
0
--
Giant
Trunade
55204071
0
--
Gimmick
Puppet
Nightmare
67441435
0
--
Glow
-
Up
Bulb
79571449
0
--
Graceful
Charity
75732622
0
--
Grinder
Golem
59537380
0
--
Guardragon
Agarpain
86148577
0
--
Guardragon
Elpy
19613556
0
--
Heavy
Storm
24094258
0
--
Heavymetalfoes
Electrumite
62242678
0
--
Hot
Red
Dragon
Archfiend
King
Calamity
61740673
0
--
Imperial
Order
59934749
0
--
Isolde
,
Two
Tales
of
the
Noble
Knights
41855169
0
--
Jowgen
the
Spiritualist
35059553
0
--
Kaiser
Colosseum
48626373
0
--
Kashtira
Arise
-
Heart
25926710
0
--
Kelbek
the
Ancient
Vanguard
39064822
0
--
Knightmare
Goblin
03679218
0
--
Knightmare
Mermaid
28566710
0
--
Last
Turn
85602018
0
--
Last
Will
34086406
0
--
Lavalval
Chain
57421866
0
--
Level
Eater
85243784
0
--
Linkross
41999284
0
--
Linkuriboh
04423206
0
--
M
-
X
-
Saber
Invoker
34206604
0
--
Magical
Scientist
34906152
0
--
Mass
Driver
21377582
0
--
Master
Peace
,
the
True
Dracoslaying
King
36521307
0
--
Mathmech
Circular
23434538
0
--
Maxx
"C"
44097050
0
--
Mecha
Phantom
Beast
Auroradon
46411259
0
--
Metamorphosis
96782886
0
--
Mind
Master
41482598
0
--
Mirage
of
Nightmare
76375976
0
--
Mystic
Mine
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
89023486
0
--
Original
Sinful
Spoils
-
Snake
-
Eye
34945480
0
--
Outer
Entity
Azathot
74191942
0
--
Painful
Choice
23558733
0
--
Phoenixian
Cluster
Amaryllis
55144522
0
--
Pot
of
Greed
25725326
0
--
Prank
-
Kids
Meow
-
Meow
-
Mu
70369116
0
--
Predaplant
Verte
Anaconda
70828912
0
--
Premature
Burial
23002292
0
--
Red
Reboot
27174286
0
--
Return
from
the
Different
Dimension
01357146
0
--
Ronintoadin
93016201
0
--
Royal
Oppression
91258852
0
--
SPYRAL
Master
Plan
57585212
0
--
Self
-
Destruct
Button
72330894
0
--
Simorgh
,
Bird
of
Sovereignty
03280747
0
--
Sixth
Sense
63789924
0
--
Smoke
Grenade
of
the
Thief
54447022
0
--
Soul
Charge
27381364
0
--
Spright
Elf
23516703
0
--
Summon
Limit
61665245
0
--
Summon
Sorceress
33918636
0
--
Superheavy
Samurai
Scarecrow
43387895
0
--
Supreme
King
Dragon
Starving
Venom
92731385
0
--
Tearlaments
Kitkallos
63101919
0
--
Tempest
Magician
42829885
0
--
The
Forceful
Sentry
88071625
0
--
The
Tyrant
Neptune
22593417
0
--
Topologic
Gumblar
Dragon
64697231
0
--
Trap
Dustshoot
88581108
0
--
True
King
of
All
Calamities
80604091
0
--
Ultimate
Offering
80604092
0
--
Ultimate
Offering
83152482
0
--
Union
Carrier
05851097
0
--
Vanity
'
s
Emptiness
44910027
0
--
Victory
Dragon
81122844
0
--
Wind
-
Up
Carrier
Zenmaity
85115440
0
--
Zoodiac
Broadbull
48905153
0
--
Zoodiac
Drident
#limit
58921041
1
--
Anti
-
Spell
Fragrance
06728559
1
--
Archnemeses
Protos
76794549
1
--
Astrograph
Sorcerer
61901281
1
--
Black
Dragon
Collapserpent
44362883
1
--
Branded
Fusion
33854624
1
--
Bystial
Magnamhut
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
00581014
1
--
Daigusto
Emeral
14536035
1
--
Dark
Grepher
15854426
1
--
Divine
Wind
of
Mist
Valley
13035077
1
--
Dragonic
Diagram
33396948
1
--
Exodia
the
Forbidden
One
95308449
1
--
Final
Countdown
81439173
1
--
Foolish
Burial
27970830
1
--
Gateway
of
the
Six
39512984
1
--
Gem
-
Knight
Master
Diamond
75500286
1
--
Gold
Sarcophagus
53334471
1
--
Gozen
Match
18144506
1
--
Harpie
'
s
Feather
Duster
66957584
1
--
Infernity
Launcher
01845204
1
--
Instant
Fusion
93946239
1
--
Into
the
Void
63542003
1
--
Keldo
the
Possessed
Statue
07902349
1
--
Left
Arm
of
the
Forbidden
One
44519536
1
--
Left
Leg
of
the
Forbidden
One
32723153
1
--
Magical
Explosion
71650854
1
--
Magical
Mid
-
Breaker
Field
38572779
1
--
Miscellaneousaurus
43040603
1
--
Monster
Gate
83764718
1
--
Monster
Reborn
83764719
1
--
Monster
Reborn
33508719
1
--
Morphing
Jar
99937011
1
--
Mudora
the
Cestus
Oracle
03734202
1
--
Naturia
Sacred
Tree
75433814
1
--
Number
40
:
Gimmick
Puppet
of
Strings
69170557
1
--
Number
C40
:
Gimmick
Puppet
of
Dark
Strings
33782437
1
--
One
Day
of
Peace
02295440
1
--
One
for
One
38814750
1
--
PSY
-
Framegear
Gamma
12958919
1
--
Phantom
Skyblaster
80453041
1
--
Phantom
of
Yubel
84211599
1
--
Pot
of
Prosperity
74586817
1
--
PSY
-
Framelord
Omega
58577036
1
--
Reasoning
32807846
1
--
Reinforcement
of
the
Army
70903634
1
--
Right
Arm
of
the
Forbidden
One
08124921
1
--
Right
Leg
of
the
Forbidden
One
90846359
1
--
Rivalry
of
Warlords
66730191
1
--
Sangen
Kaimen
30336082
1
--
Sangen
Summoning
24940422
1
--
Sekka
'
s
Light
73468603
1
--
Set
Rotation
82732705
1
--
Skill
Drain
52340444
1
--
Sky
Striker
Mecha
-
Hornet
Drones
71344451
1
--
Slash
Draw
09674034
1
--
Snake
-
Eye
Ash
90241276
1
--
Snake
-
Eyes
Poplar
45986603
1
--
Snatch
Steal
73539069
1
--
Striker
Dragon
20663556
1
--
Substitoad
93896655
1
--
Sunavalon
Dryas
65563871
1
--
Sunvine
Healer
90953320
1
--
T
.
G
.
Hyper
Librarian
37961969
1
--
Tearlaments
Havnis
74078255
1
--
Tearlaments
Merrli
00572850
1
--
Tearlaments
Scheiren
91810826
1
--
Tenpai
Dragon
Chundra
73628505
1
--
Terraforming
11110587
1
--
That
Grass
Looks
Greener
24207889
1
--
There
Can
Be
Only
One
41165831
1
--
Unchained
Soul
of
Sharvara
99234526
1
--
White
Dragon
Wyverburster
46060017
1
--
Zoodiac
Barrage
78872731
1
--
Zoodiac
Ratpier
#semi limit
34124316
2
--
Cyber
Jar
43694650
2
--
Danger
!?
Jackalope
?
99745551
2
--
Danger
!?
Tsuchinoko
?
40177746
2
--
Eva
14532163
2
--
Lightning
Storm
17330916
2
--
Performapal
Monkeyboard
55584558
2
--
Purrely
Delicious
Memory
21347668
2
--
Purrely
Sleepy
Memory
92107604
2
--
Runick
Fountain
!
2024
.
10
#forbidden
91869203
0
--アマゾネスの射手
91869203
0
--アマゾネスの射手
20663556
0
--イレカエル
20663556
0
--イレカエル
44910027
0
--ヴィクトリー・ドラゴン
44910027
0
--ヴィクトリー・ドラゴン
...
@@ -413,13 +17,13 @@
...
@@ -413,13 +17,13 @@
62320425
0
--古衛兵アギド
62320425
0
--古衛兵アギド
25926710
0
--古尖兵ケルベク
25926710
0
--古尖兵ケルベク
03040496
0
--混沌魔龍 カオス・ルーラー
03040496
0
--混沌魔龍 カオス・ルーラー
34124316
0
--サイバーポッド
02563463
0
--流離のグリフォンライダー
02563463
0
--流離のグリフォンライダー
88071625
0
--
The
tyrant
NEPTUNE
88071625
0
--
The
tyrant
NEPTUNE
52653092
0
--
SNo
.
0
ホープ・ゼアル
52653092
0
--
SNo
.
0
ホープ・ゼアル
85115440
0
--十二獣ブルホーン
85115440
0
--十二獣ブルホーン
59537380
0
--守護竜アガーペイン
59537380
0
--守護竜アガーペイン
86148577
0
--守護竜エルピィ
86148577
0
--守護竜エルピィ
21044178
0
--深淵に潜む者
88581108
0
--真竜皇
V
.
F
.
D
.
88581108
0
--真竜皇
V
.
F
.
D
.
27381364
0
--スプライト・エルフ
27381364
0
--スプライト・エルフ
16923472
0
--ゼンマイハンター
16923472
0
--ゼンマイハンター
...
@@ -482,13 +86,14 @@
...
@@ -482,13 +86,14 @@
17178486
0
--ライフチェンジャー
17178486
0
--ライフチェンジャー
28566710
0
--ラストバトル!
28566710
0
--ラストバトル!
#limit
#limit
20292186
1
--アーティファクト-デスサイズ
76794549
1
--アストログラフ・マジシャン
76794549
1
--アストログラフ・マジシャン
34022970
1
--エクス・ライゼオル
29301450
1
--
S
:
P
リトルナイト
29301450
1
--
S
:
P
リトルナイト
17330916
1
--
EM
モンキーボード
68304193
1
--クシャトリラ・ユニコーン
68304193
1
--クシャトリラ・ユニコーン
12289247
1
--クロノグラフ・マジシャン
72270339
1
--黒魔女ディアベルスター
72270339
1
--黒魔女ディアベルスター
99937011
1
--剣神官ムドラ
99937011
1
--剣神官ムドラ
34124316
1
--サイバーポッド
38814750
1
--
PSY
フレームギア・γ
38814750
1
--
PSY
フレームギア・γ
74586817
1
--
PSY
フレームロード・Ω
74586817
1
--
PSY
フレームロード・Ω
32731036
1
--深淵の獣ルベリオン
32731036
1
--深淵の獣ルベリオン
...
@@ -497,7 +102,6 @@
...
@@ -497,7 +102,6 @@
78872731
1
--十二獣モルモラット
78872731
1
--十二獣モルモラット
06602300
1
--重爆撃禽 ボム・フェネクス
06602300
1
--重爆撃禽 ボム・フェネクス
63542003
1
--宿神像ケルドウ
63542003
1
--宿神像ケルドウ
21377582
1
--真竜剣皇マスター
P
09674034
1
--スネークアイ・エクセル
09674034
1
--スネークアイ・エクセル
90241276
1
--蛇眼の炎燐
90241276
1
--蛇眼の炎燐
13533678
1
--スプライト・ジェット
13533678
1
--スプライト・ジェット
...
@@ -525,7 +129,6 @@
...
@@ -525,7 +129,6 @@
94689206
1
--ブロックドラゴン
94689206
1
--ブロックドラゴン
24094258
1
--ヘビーメタルフォーゼ・エレクトラム
24094258
1
--ヘビーメタルフォーゼ・エレクトラム
60764609
1
--魔を刻むデモンスミス
60764609
1
--魔を刻むデモンスミス
33508719
1
--メタモルポット
77103950
1
--壱世壊=ペルレイノ
77103950
1
--壱世壊=ペルレイノ
33782437
1
--一時休戦
33782437
1
--一時休戦
01845204
1
--簡易融合
01845204
1
--簡易融合
...
@@ -535,11 +138,9 @@
...
@@ -535,11 +138,9 @@
85106525
1
--篝火
85106525
1
--篝火
84211599
1
--金満で謙虚な壺
84211599
1
--金満で謙虚な壺
23701465
1
--原初の種
23701465
1
--原初の種
45986603
1
--強奪
80845034
1
--“罪宝狩りの悪魔”
80845034
1
--“罪宝狩りの悪魔”
30336082
1
--盃満ちる燦幻荘
30336082
1
--盃満ちる燦幻荘
83764718
1
--死者蘇生
83764718
1
--死者蘇生
46060017
1
--十二獣の会局
15443125
1
--スプライト・スターター
15443125
1
--スプライト・スターター
52340444
1
--閃刀機-ホーネットビット
52340444
1
--閃刀機-ホーネットビット
32807846
1
--増援
32807846
1
--増援
...
@@ -548,48 +149,49 @@
...
@@ -548,48 +149,49 @@
73628505
1
--テラ・フォーミング
73628505
1
--テラ・フォーミング
18144506
1
--ハーピィの羽根帚
18144506
1
--ハーピィの羽根帚
21347668
1
--ピュアリィ・スリーピィメモリー
21347668
1
--ピュアリィ・スリーピィメモリー
75500286
1
--封印の黄金櫃
07394770
1
--ブリリアント・フュージョン
07394770
1
--ブリリアント・フュージョン
73468603
1
--盆回し
73468603
1
--盆回し
93600443
1
--マスク・チェンジ・セカンド
93600443
1
--マスク・チェンジ・セカンド
65681983
1
--抹殺の指名者
65681983
1
--抹殺の指名者
71832012
1
--六世壊=パライゾス
71832012
1
--六世壊=パライゾス
01475311
1
--闇の誘惑
44362883
1
--烙印融合
44362883
1
--烙印融合
92107604
1
--神碑の泉
92107604
1
--神碑の泉
27970830
1
--六武の門
27970830
1
--六武の門
02295440
1
--ワン・フォー・ワン
02295440
1
--ワン・フォー・ワン
90846359
1
--群雄割拠
90846359
1
--群雄割拠
53334471
1
--御前試合
23516703
1
--サモンリミッター
23516703
1
--サモンリミッター
82732705
1
--スキルドレイン
82732705
1
--スキルドレイン
24207889
1
--センサー万別
24207889
1
--センサー万別
21076084
1
--トリックスター・リンカーネイション
21076084
1
--トリックスター・リンカーネイション
23002292
1
--レッド・リブート
23002292
1
--レッド・リブート
#semi limit
#semi limit
40177746
2
--イーバ
02526224
2
--炎王神獣 キリン
02526224
2
--炎王神獣 キリン
17330916
2
--
EM
モンキーボード
12289247
2
--クロノグラフ・マジシャン
21377582
2
--真竜剣皇マスター
P
81275020
2
--
SR
ベイゴマックス
81275020
2
--
SR
ベイゴマックス
23434538
2
--増殖する
G
23434538
2
--増殖する
G
82385847
2
--ダイナレスラー・パンクラトプス
91800273
2
--ディメンション・アトラクター
91800273
2
--ディメンション・アトラクター
09411399
2
--
D
-
HERO
ディアボリックガイ
33508719
2
--メタモルポット
04423206
2
--
M
.
X
-セイバー インヴォーカー
92746535
2
--竜剣士ラスター
P
65734501
2
--
R
-
ACE
エアホイスター
65734501
2
--
R
-
ACE
エアホイスター
35726888
2
--おろかな副葬
35726888
2
--おろかな副葬
67723438
2
--緊急テレポート
67723438
2
--緊急テレポート
45986603
2
--強奪
49238328
2
--強欲で金満な壺
49238328
2
--強欲で金満な壺
35261759
2
--強欲で貪欲な壺
35261759
2
--強欲で貪欲な壺
46060017
2
--十二獣の会局
07477101
2
--時空の七皇
48130397
2
--超融合
48130397
2
--超融合
11110587
2
--隣の芝刈り
11110587
2
--隣の芝刈り
93729896
2
--ナイトメア・スローン
93729896
2
--ナイトメア・スローン
24224830
2
--墓穴の指名者
24224830
2
--墓穴の指名者
55584558
2
--ピュアリィ・デリシャスメモリー
75500286
2
--封印の黄金櫃
52947044
2
--フュージョン・デステニー
52947044
2
--フュージョン・デステニー
36637374
2
--烙印開幕
53334471
2
--御前試合
92714517
2
--ビッグウェルカム・ラビュリンス
92714517
2
--ビッグウェルカム・ラビュリンス
!
2024
.
9
TCG
!
2024
.
12
TCG
#forbidden
#forbidden
62320425
0
--
Agido
the
Ancient
Sentinel
62320425
0
--
Agido
the
Ancient
Sentinel
20292186
0
--
Artifact
Scythe
20292186
0
--
Artifact
Scythe
...
@@ -603,8 +205,10 @@
...
@@ -603,8 +205,10 @@
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
55204071
0
--
Gimmick
Puppet
Nightmare
67441435
0
--
Glow
-
Up
Bulb
67441435
0
--
Glow
-
Up
Bulb
75732622
0
--
Grinder
Golem
75732622
0
--
Grinder
Golem
41855169
0
--
Jowgen
the
Spiritualist
25926710
0
--
Kelbek
the
Ancient
Vanguard
25926710
0
--
Kelbek
the
Ancient
Vanguard
57421866
0
--
Level
Eater
57421866
0
--
Level
Eater
34206604
0
--
Magical
Scientist
34206604
0
--
Magical
Scientist
...
@@ -677,13 +281,13 @@
...
@@ -677,13 +281,13 @@
46411259
0
--
Metamorphosis
46411259
0
--
Metamorphosis
41482598
0
--
Mirage
of
Nightmare
41482598
0
--
Mirage
of
Nightmare
76375976
0
--
Mystic
Mine
76375976
0
--
Mystic
Mine
89023486
0
--
Original
Sinful
Spoils
-
Snake
-
Eye
74191942
0
--
Painful
Choice
74191942
0
--
Painful
Choice
55144522
0
--
Pot
of
Greed
55144522
0
--
Pot
of
Greed
70828912
0
--
Premature
Burial
70828912
0
--
Premature
Burial
63789924
0
--
Smoke
Grenade
of
the
Thief
63789924
0
--
Smoke
Grenade
of
the
Thief
54447022
0
--
Soul
Charge
54447022
0
--
Soul
Charge
42829885
0
--
The
Forceful
Sentry
42829885
0
--
The
Forceful
Sentry
46060017
0
--
Zoodiac
Barrage
43262273
0
--
Appointer
of
the
Red
Lotus
43262273
0
--
Appointer
of
the
Red
Lotus
01041278
0
--
Branded
Expulsion
01041278
0
--
Branded
Expulsion
61740673
0
--
Imperial
Order
61740673
0
--
Imperial
Order
...
@@ -706,30 +310,26 @@
...
@@ -706,30 +310,26 @@
76794549
1
--
Astrograph
Sorcerer
76794549
1
--
Astrograph
Sorcerer
61901281
1
--
Black
Dragon
Collapserpent
61901281
1
--
Black
Dragon
Collapserpent
33854624
1
--
Bystial
Magnamhut
33854624
1
--
Bystial
Magnamhut
34124316
1
--
Cyber
Jar
43694650
1
--
Danger
!?
Jackalope
?
99745551
1
--
Danger
!?
Tsuchinoko
?
14536035
1
--
Dark
Grepher
14536035
1
--
Dark
Grepher
40177746
1
--
Eva
33396948
1
--
Exodia
the
Forbidden
One
33396948
1
--
Exodia
the
Forbidden
One
63542003
1
--
Keldo
the
Sacred
Protector
63542003
1
--
Keldo
the
Sacred
Protector
38572779
1
--
Miscellaneousaurus
38572779
1
--
Miscellaneousaurus
33508719
1
--
Morphing
Jar
33508719
1
--
Morphing
Jar
99937011
1
--
Mudora
the
Sword
Oracle
99937011
1
--
Mudora
the
Sword
Oracle
17330916
1
--
Performapal
Monkeyboard
12958919
1
--
Phantom
Skyblaster
12958919
1
--
Phantom
Skyblaster
38814750
1
--
PSY
-
Framegear
Gamma
38814750
1
--
PSY
-
Framegear
Gamma
65734501
1
--
Rescue
-
ACE
Air
Lifter
09674034
1
--
Snake
-
Eye
Ash
09674034
1
--
Snake
-
Eye
Ash
90241276
1
--
Snake
-
Eyes
Poplar
90241276
1
--
Snake
-
Eyes
Poplar
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
41165831
1
--
Unchained
Soul
of
Sharvara
41165831
1
--
Unchained
Soul
of
Sharvara
99234526
1
--
White
Dragon
Wyverburster
99234526
1
--
White
Dragon
Wyverburster
78872731
1
--
Zoodiac
Ratpier
78872731
1
--
Zoodiac
Ratpier
39512984
1
--
Gem
-
Knight
Master
Diamond
39512984
1
--
Gem
-
Knight
Master
Diamond
80453041
1
--
Phantom
of
Yubel
73539069
1
--
Striker
Dragon
73539069
1
--
Striker
Dragon
93896655
1
--
Sunavalon
Dryas
93896655
1
--
Sunavalon
Dryas
65563871
1
--
Sunvine
Healer
65563871
1
--
Sunvine
Healer
...
@@ -761,10 +361,10 @@
...
@@ -761,10 +361,10 @@
83764718
1
--
Monster
Reborn
83764718
1
--
Monster
Reborn
33782437
1
--
One
Day
of
Peace
33782437
1
--
One
Day
of
Peace
02295440
1
--
One
for
One
02295440
1
--
One
for
One
80312545
1
--
Opening
of
the
Spirit
Gates
84211599
1
--
Pot
of
Prosperity
84211599
1
--
Pot
of
Prosperity
58577036
1
--
Reasoning
58577036
1
--
Reasoning
32807846
1
--
Reinforcement
of
the
Army
32807846
1
--
Reinforcement
of
the
Army
66730191
1
--
Sangen
Kaimen
30336082
1
--
Sangen
Summoning
30336082
1
--
Sangen
Summoning
24940422
1
--
Sekka
'
s
Light
24940422
1
--
Sekka
'
s
Light
73468603
1
--
Set
Rotation
73468603
1
--
Set
Rotation
...
@@ -773,6 +373,7 @@
...
@@ -773,6 +373,7 @@
45986603
1
--
Snatch
Steal
45986603
1
--
Snatch
Steal
73628505
1
--
Terraforming
73628505
1
--
Terraforming
11110587
1
--
That
Grass
Looks
Greener
11110587
1
--
That
Grass
Looks
Greener
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
...
@@ -781,18 +382,209 @@
...
@@ -781,18 +382,209 @@
82732705
1
--
Skill
Drain
82732705
1
--
Skill
Drain
24207889
1
--
There
Can
Be
Only
One
24207889
1
--
There
Can
Be
Only
One
#semi limit
#semi limit
53804307
2
--
Blaster
,
Dragon
Ruler
of
Infernos
34124316
2
--
Cyber
Jar
82385847
2
--
Dinowrestler
Pankratops
43694650
2
--
Danger
!?
Jackalope
?
83190280
2
--
Lunalight
Tiger
99745551
2
--
Danger
!?
Tsuchinoko
?
90411554
2
--
Redox
,
Dragon
Ruler
of
Boulders
40177746
2
--
Eva
89399912
2
--
Tempest
,
Dragon
Ruler
of
Storms
17330916
2
--
Performapal
Monkeyboard
26400609
2
--
Tidal
,
Dragon
Ruler
of
Waterfalls
14532163
2
--
Lightning
Storm
15291624
2
--
Thunder
Dragon
Colossus
55584558
2
--
Purrely
Delicious
Memory
94677445
2
--
Ib
the
World
Chalice
Justiciar
21347668
2
--
Purrely
Sleepy
Memory
14532163
2
--
Lightning
Storm
92107604
2
--
Runick
Fountain
55584558
2
--
Purrely
Delicious
Memory
21347668
2
--
Purrely
Sleepy
Memory
!
2024
.
10
92107604
2
--
Runick
Fountain
#forbidden
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
--混沌魔龍 カオス・ルーラー
34124316
0
--サイバーポッド
02563463
0
--流離のグリフォンライダー
88071625
0
--
The
tyrant
NEPTUNE
52653092
0
--
SNo
.
0
ホープ・ゼアル
85115440
0
--十二獣ブルホーン
59537380
0
--守護竜アガーペイン
86148577
0
--守護竜エルピィ
88581108
0
--真竜皇
V
.
F
.
D
.
27381364
0
--スプライト・エルフ
16923472
0
--ゼンマイハンター
15341821
0
--ダンディライオン
77679716
0
--超重武者装留ブレイク・アーマー
92731385
0
--ティアラメンツ・キトカロス
69015963
0
--デビル・フランケン
79875176
0
--トゥーン・キャノン・ソルジャー
75732622
0
--トーチ・ゴーレム
22593417
0
--トポロジック・ガンブラー・ドラゴン
39064822
0
--トロイメア・ゴブリン
03679218
0
--トロイメア・マーメイド
54719828
0
--
No
.
16
色の支配者ショック・ルーラー
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
--王宮の勅命
03280747
0
--第六感
64697231
0
--ダスト・シュート
80604091
0
--血の代償
32723153
0
--マジカル・エクスプロージョン
17178486
0
--ライフチェンジャー
28566710
0
--ラストバトル!
#limit
76794549
1
--アストログラフ・マジシャン
29301450
1
--
S
:
P
リトルナイト
17330916
1
--
EM
モンキーボード
68304193
1
--クシャトリラ・ユニコーン
12289247
1
--クロノグラフ・マジシャン
72270339
1
--黒魔女ディアベルスター
99937011
1
--剣神官ムドラ
38814750
1
--
PSY
フレームギア・γ
74586817
1
--
PSY
フレームロード・Ω
32731036
1
--深淵の獣ルベリオン
36521307
1
--斬機サーキュラー
48905153
1
--十二獣ドランシア
78872731
1
--十二獣モルモラット
06602300
1
--重爆撃禽 ボム・フェネクス
63542003
1
--宿神像ケルドウ
21377582
1
--真竜剣皇マスター
P
09674034
1
--スネークアイ・エクセル
90241276
1
--蛇眼の炎燐
13533678
1
--スプライト・ジェット
76145933
1
--スプライト・ブルー
90361010
1
--超重武者装留イワトオシ
37818794
1
--超魔導竜騎士-ドラグーン・オブ・レッドアイズ
04928565
1
--ティアラメンツ・クシャトリラ
00572850
1
--ティアラメンツ・シェイレーン
37961969
1
--ティアラメンツ・ハゥフニス
74078255
1
--ティアラメンツ・メイルゥ
73956664
1
--ティアラメンツ・レイノハート
90953320
1
--
TG
ハイパー・ライブラリアン
91810826
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
--ヘビーメタルフォーゼ・エレクトラム
60764609
1
--魔を刻むデモンスミス
33508719
1
--メタモルポット
77103950
1
--壱世壊=ペルレイノ
33782437
1
--一時休戦
01845204
1
--簡易融合
61292243
1
--
EMERGENCY
!
19613556
1
--大嵐
81439173
1
--おろかな埋葬
85106525
1
--篝火
84211599
1
--金満で謙虚な壺
23701465
1
--原初の種
45986603
1
--強奪
80845034
1
--“罪宝狩りの悪魔”
30336082
1
--盃満ちる燦幻荘
83764718
1
--死者蘇生
46060017
1
--十二獣の会局
15443125
1
--スプライト・スターター
52340444
1
--閃刀機-ホーネットビット
32807846
1
--増援
72892473
1
--手札抹殺
98567237
1
--刻まれし魔の詠聖
73628505
1
--テラ・フォーミング
18144506
1
--ハーピィの羽根帚
21347668
1
--ピュアリィ・スリーピィメモリー
07394770
1
--ブリリアント・フュージョン
73468603
1
--盆回し
93600443
1
--マスク・チェンジ・セカンド
65681983
1
--抹殺の指名者
71832012
1
--六世壊=パライゾス
44362883
1
--烙印融合
92107604
1
--神碑の泉
27970830
1
--六武の門
02295440
1
--ワン・フォー・ワン
90846359
1
--群雄割拠
23516703
1
--サモンリミッター
82732705
1
--スキルドレイン
24207889
1
--センサー万別
21076084
1
--トリックスター・リンカーネイション
23002292
1
--レッド・リブート
#semi limit
40177746
2
--イーバ
02526224
2
--炎王神獣 キリン
81275020
2
--
SR
ベイゴマックス
23434538
2
--増殖する
G
82385847
2
--ダイナレスラー・パンクラトプス
91800273
2
--ディメンション・アトラクター
09411399
2
--
D
-
HERO
ディアボリックガイ
04423206
2
--
M
.
X
-セイバー インヴォーカー
92746535
2
--竜剣士ラスター
P
65734501
2
--
R
-
ACE
エアホイスター
35726888
2
--おろかな副葬
67723438
2
--緊急テレポート
49238328
2
--強欲で金満な壺
35261759
2
--強欲で貪欲な壺
48130397
2
--超融合
11110587
2
--隣の芝刈り
93729896
2
--ナイトメア・スローン
24224830
2
--墓穴の指名者
55584558
2
--ピュアリィ・デリシャスメモリー
75500286
2
--封印の黄金櫃
52947044
2
--フュージョン・デステニー
36637374
2
--烙印開幕
53334471
2
--御前試合
92714517
2
--ビッグウェルカム・ラビュリンス
!
2024
.
7
!
2024
.
7
#forbidden
#forbidden
...
@@ -8153,6 +7945,211 @@
...
@@ -8153,6 +7945,211 @@
53582587
2
--激流葬
53582587
2
--激流葬
29401950
2
--奈落の落とし穴
29401950
2
--奈落の落とし穴
!
2024
.
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
67441435
0
--
Glow
-
Up
Bulb
75732622
0
--
Grinder
Golem
25926710
0
--
Kelbek
the
Ancient
Vanguard
57421866
0
--
Level
Eater
34206604
0
--
Magical
Scientist
21377582
0
--
Master
Peace
,
the
True
Dracoslaying
King
36521307
0
--
Mathmech
Circular
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
03679218
0
--
Knightmare
Mermaid
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
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
07394770
0
--
Brilliant
Fusion
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
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
46060017
0
--
Zoodiac
Barrage
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
61901281
1
--
Black
Dragon
Collapserpent
33854624
1
--
Bystial
Magnamhut
34124316
1
--
Cyber
Jar
43694650
1
--
Danger
!?
Jackalope
?
99745551
1
--
Danger
!?
Tsuchinoko
?
14536035
1
--
Dark
Grepher
40177746
1
--
Eva
33396948
1
--
Exodia
the
Forbidden
One
63542003
1
--
Keldo
the
Sacred
Protector
38572779
1
--
Miscellaneousaurus
33508719
1
--
Morphing
Jar
99937011
1
--
Mudora
the
Sword
Oracle
17330916
1
--
Performapal
Monkeyboard
12958919
1
--
Phantom
Skyblaster
38814750
1
--
PSY
-
Framegear
Gamma
65734501
1
--
Rescue
-
ACE
Air
Lifter
09674034
1
--
Snake
-
Eye
Ash
90241276
1
--
Snake
-
Eyes
Poplar
20663556
1
--
Substitoad
37961969
1
--
Tearlaments
Havnis
74078255
1
--
Tearlaments
Merrli
00572850
1
--
Tearlaments
Scheiren
41165831
1
--
Unchained
Soul
of
Sharvara
99234526
1
--
White
Dragon
Wyverburster
78872731
1
--
Zoodiac
Ratpier
39512984
1
--
Gem
-
Knight
Master
Diamond
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
44362883
1
--
Branded
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
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
80312545
1
--
Opening
of
the
Spirit
Gates
84211599
1
--
Pot
of
Prosperity
58577036
1
--
Reasoning
32807846
1
--
Reinforcement
of
the
Army
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
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
53804307
2
--
Blaster
,
Dragon
Ruler
of
Infernos
82385847
2
--
Dinowrestler
Pankratops
83190280
2
--
Lunalight
Tiger
90411554
2
--
Redox
,
Dragon
Ruler
of
Boulders
89399912
2
--
Tempest
,
Dragon
Ruler
of
Storms
26400609
2
--
Tidal
,
Dragon
Ruler
of
Waterfalls
15291624
2
--
Thunder
Dragon
Colossus
94677445
2
--
Ib
the
World
Chalice
Justiciar
14532163
2
--
Lightning
Storm
55584558
2
--
Purrely
Delicious
Memory
21347668
2
--
Purrely
Sleepy
Memory
92107604
2
--
Runick
Fountain
!
2024
.
4
TCG
!
2024
.
4
TCG
#forbidden
#forbidden
62320425
0
--
Agido
the
Ancient
Sentinel
62320425
0
--
Agido
the
Ancient
Sentinel
...
...
ocgcore
@
67b36590
Subproject commit 6
4739171180c049c2dca6cbd6838ed6d9576ac6f
Subproject commit 6
7b3659025be1d06b547e9a3adf854f985b0e2e7
script
@
38a7056c
Subproject commit
e4b80d22400e90a6ca132b67554accf435ca2a62
Subproject commit
38a7056cb4a9120ec10732155500a6c320c783a0
strings.conf
View file @
927c847a
...
@@ -668,7 +668,7 @@
...
@@ -668,7 +668,7 @@
!
counter
0
x68
指示物(图腾柱)
!
counter
0
x68
指示物(图腾柱)
!
counter
0
x69
指示物(吠陀-优婆尼沙昙)
!
counter
0
x69
指示物(吠陀-优婆尼沙昙)
!
counter
0
x6a
响鸣指示物
!
counter
0
x6a
响鸣指示物
!
counter
0
x6b
狂爱指示物
!
counter
0
x
10
6b
狂爱指示物
!
counter
0
x6c
访问指示物
!
counter
0
x6c
访问指示物
!
counter
0
x6d
祝台指示物
!
counter
0
x6d
祝台指示物
#setnames, using tab for comment
#setnames, using tab for comment
...
@@ -1251,5 +1251,5 @@
...
@@ -1251,5 +1251,5 @@
!
setname
0
x1be
雷火沸动 ライゼオル
!
setname
0
x1be
雷火沸动 ライゼオル
!
setname
0
x1bf
码丽丝
M
∀
LICE
!
setname
0
x1bf
码丽丝
M
∀
LICE
!
setname
0
x1c0
龙华 竜華
!
setname
0
x1c0
龙华 竜華
!
setname
0
x1c1
阿
耳戈视☆将
星
ARG
☆
S
!
setname
0
x1c1
阿
尔戈☆群
星
ARG
☆
S
!
setname
0
x1c2
喷水引擎 アクア・ジェット
!
setname
0
x1c2
喷水引擎 アクア・ジェット
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