mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 02:42:09 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
parent
a35fadd50c
commit
a26ef0e5eb
3
.bruno/environments/Beta.bru
Normal file
3
.bruno/environments/Beta.bru
Normal file
@ -0,0 +1,3 @@
|
||||
vars {
|
||||
BASE_URL: https://beta.api.tcgdex.net
|
||||
}
|
14
.github/workflows/conventionnal-commit.yml
vendored
14
.github/workflows/conventionnal-commit.yml
vendored
@ -1,14 +0,0 @@
|
||||
name: Conventionnal Commit
|
||||
on: pull_request
|
||||
jobs:
|
||||
conventional:
|
||||
name: Conventional PR
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
- uses: beemojs/conventional-pr-action@v2
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
config-preset: angular
|
10
data-asia/ADV.ts
Normal file
10
data-asia/ADV.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import { Serie } from '../interfaces'
|
||||
|
||||
const serie: Serie = {
|
||||
name: {
|
||||
ja: 'ADV'
|
||||
},
|
||||
id: 'ADV'
|
||||
}
|
||||
|
||||
export default serie
|
18
data-asia/ADV/ADV1.ts
Normal file
18
data-asia/ADV/ADV1.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../ADV'
|
||||
|
||||
const set: Set = {
|
||||
id: 'ADV1',
|
||||
name: {
|
||||
ja: '拡張パック'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 55
|
||||
},
|
||||
releaseDate: '2003-01-31'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/ADV/ADV2.ts
Normal file
18
data-asia/ADV/ADV2.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../ADV'
|
||||
|
||||
const set: Set = {
|
||||
id: 'ADV2',
|
||||
name: {
|
||||
ja: '砂漠のきせき'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 53
|
||||
},
|
||||
releaseDate: '2003-04-18'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/ADV/ADV3.ts
Normal file
18
data-asia/ADV/ADV3.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../ADV'
|
||||
|
||||
const set: Set = {
|
||||
id: 'ADV3',
|
||||
name: {
|
||||
ja: '天空の覇者'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 54
|
||||
},
|
||||
releaseDate: '2003-06-25'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/ADV/ADV4.ts
Normal file
18
data-asia/ADV/ADV4.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../ADV'
|
||||
|
||||
const set: Set = {
|
||||
id: 'ADV4',
|
||||
name: {
|
||||
ja: '強化拡張パックex1マグマVSアクア ふたつの野望'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 80
|
||||
},
|
||||
releaseDate: '2003-10-24'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/ADV/ADV5.ts
Normal file
18
data-asia/ADV/ADV5.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../ADV'
|
||||
|
||||
const set: Set = {
|
||||
id: 'ADV5',
|
||||
name: {
|
||||
ja: 'とかれた封印'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 83
|
||||
},
|
||||
releaseDate: '2004-01-16'
|
||||
}
|
||||
|
||||
export default set
|
8
data-asia/BW.ts
Normal file
8
data-asia/BW.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { Serie } from '../interfaces'
|
||||
|
||||
const serie: Serie = {
|
||||
name: {},
|
||||
id: 'null'
|
||||
}
|
||||
|
||||
export default serie
|
19
data-asia/BW/BW1a.ts
Normal file
19
data-asia/BW/BW1a.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW1a',
|
||||
name: {
|
||||
ja: 'ブラックコレクション',
|
||||
ko: '블랙 컬렉션'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 53
|
||||
},
|
||||
releaseDate: '2010-12-17'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW1b.ts
Normal file
19
data-asia/BW/BW1b.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW1b',
|
||||
name: {
|
||||
ja: 'ホワイトコレクション',
|
||||
ko: '화이트 컬렉션'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 53
|
||||
},
|
||||
releaseDate: '2010-12-17'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW2.ts
Normal file
19
data-asia/BW/BW2.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW2',
|
||||
name: {
|
||||
ja: 'レッドコレクション',
|
||||
ko: '레드 컬렉션'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 66
|
||||
},
|
||||
releaseDate: '2011-07-15'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW3a.ts
Normal file
19
data-asia/BW/BW3a.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW3a',
|
||||
name: {
|
||||
ja: 'サイコドライブ',
|
||||
ko: '사이코 드라이브'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 52
|
||||
},
|
||||
releaseDate: '2011-09-16'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW3b.ts
Normal file
19
data-asia/BW/BW3b.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW3a',
|
||||
name: {
|
||||
ja: 'ヘイルブリザード',
|
||||
ko: '헤일 블리자드'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 52
|
||||
},
|
||||
releaseDate: '2011-09-16'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW4.ts
Normal file
19
data-asia/BW/BW4.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW4',
|
||||
name: {
|
||||
ja: 'ダークラッシュ',
|
||||
ko: '다크러시'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 69
|
||||
},
|
||||
releaseDate: '2011-12-16'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW5a.ts
Normal file
19
data-asia/BW/BW5a.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW5a',
|
||||
name: {
|
||||
ja: 'リューズブラスト',
|
||||
ko: '드래곤 블라스트'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 50
|
||||
},
|
||||
releaseDate: '2012-03-16'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW5b.ts
Normal file
19
data-asia/BW/BW5b.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW5b',
|
||||
name: {
|
||||
ja: 'リューノブレード',
|
||||
ko: '드래곤 블레이드'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 50
|
||||
},
|
||||
releaseDate: '2012-03-16'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW6a.ts
Normal file
19
data-asia/BW/BW6a.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW6a',
|
||||
name: {
|
||||
ja: 'フリーズボルト',
|
||||
ko: '프리즈볼트'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 59
|
||||
},
|
||||
releaseDate: '2012-07-13'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW6b.ts
Normal file
19
data-asia/BW/BW6b.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW6b',
|
||||
name: {
|
||||
ja: 'コールドフレア',
|
||||
ko: '콜드플레어'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 59
|
||||
},
|
||||
releaseDate: '2012-07-13'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW7.ts
Normal file
19
data-asia/BW/BW7.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW7',
|
||||
name: {
|
||||
ja: 'プラズマゲイル',
|
||||
ko: '플라스마게일'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 70
|
||||
},
|
||||
releaseDate: '2012-09-14'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW8a.ts
Normal file
19
data-asia/BW/BW8a.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW8a',
|
||||
name: {
|
||||
ja: 'ラセンフォース',
|
||||
ko: '스파이럴포스'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 51
|
||||
},
|
||||
releaseDate: '2012-12-14'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW8b.ts
Normal file
19
data-asia/BW/BW8b.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW8a',
|
||||
name: {
|
||||
ja: 'ライデンナックル',
|
||||
ko: '볼트너클'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 51
|
||||
},
|
||||
releaseDate: '2012-12-14'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/BW9.ts
Normal file
19
data-asia/BW/BW9.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'BW9',
|
||||
name: {
|
||||
ja: 'メガロキャノン',
|
||||
ko: '메갈로캐논'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 76
|
||||
},
|
||||
releaseDate: '2013-03-15'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/DS.ts
Normal file
19
data-asia/BW/DS.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'DS',
|
||||
name: {
|
||||
ja: 'ドラゴンセレクション',
|
||||
ko: '드래곤 컬렉션'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 20
|
||||
},
|
||||
releaseDate: '2012-01-27'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/EBB.ts
Normal file
19
data-asia/BW/EBB.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'EBB',
|
||||
name: {
|
||||
ja: 'EXバトルブースト',
|
||||
ko: 'EX 배틀 부스트'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 96
|
||||
},
|
||||
releaseDate: '2013-07-13'
|
||||
}
|
||||
|
||||
export default set
|
19
data-asia/BW/SC.ts
Normal file
19
data-asia/BW/SC.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../BW'
|
||||
|
||||
const set: Set = {
|
||||
id: 'SC',
|
||||
name: {
|
||||
ja: 'シャイニーコレクション',
|
||||
ko: '샤이니 컬렉션'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 20
|
||||
},
|
||||
releaseDate: '2013-02-01'
|
||||
}
|
||||
|
||||
export default set
|
8
data-asia/DP.ts
Normal file
8
data-asia/DP.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { Serie } from '../interfaces'
|
||||
|
||||
const serie: Serie = {
|
||||
name: {},
|
||||
id: 'null'
|
||||
}
|
||||
|
||||
export default serie
|
18
data-asia/DP/DP1a.ts
Normal file
18
data-asia/DP/DP1a.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'DP1a',
|
||||
name: {
|
||||
ja: '時空の創造: ダイヤモンドコレクション'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 117
|
||||
},
|
||||
releaseDate: '2006-11-30'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/DP/DP1b.ts
Normal file
18
data-asia/DP/DP1b.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'DP1b',
|
||||
name: {
|
||||
ja: '時空の創造: パールコレクション'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 119
|
||||
},
|
||||
releaseDate: '2006-11-30'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/DP/DP2.ts
Normal file
18
data-asia/DP/DP2.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'DP2',
|
||||
name: {
|
||||
ja: '湖の秘密'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 123
|
||||
},
|
||||
releaseDate: '2007-03-02'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/DP/DP3.ts
Normal file
18
data-asia/DP/DP3.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'DP3',
|
||||
name: {
|
||||
ja: 'ひかる闇'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 119
|
||||
},
|
||||
releaseDate: '2007-07-05'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/DP/DP4a.ts
Normal file
18
data-asia/DP/DP4a.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'DP4a',
|
||||
name: {
|
||||
ja: '月光の追跡'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 70
|
||||
},
|
||||
releaseDate: '2007-10-26'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/DP/DP4b.ts
Normal file
18
data-asia/DP/DP4b.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'DP4b',
|
||||
name: {
|
||||
ja: '夜明けの疾走'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 70
|
||||
},
|
||||
releaseDate: '2007-10-26'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/DP/DP5a.ts
Normal file
18
data-asia/DP/DP5a.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'DP5a',
|
||||
name: {
|
||||
ja: '秘境の叫び'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 65
|
||||
},
|
||||
releaseDate: '2008-03-14'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/DP/DP5b.ts
Normal file
18
data-asia/DP/DP5b.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'DP5b',
|
||||
name: {
|
||||
ja: '怒りの神殿'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 65
|
||||
},
|
||||
releaseDate: '2008-03-14'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/DP/DP6.ts
Normal file
18
data-asia/DP/DP6.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'DP6',
|
||||
name: {
|
||||
ja: '破空の激闘'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 92
|
||||
},
|
||||
releaseDate: '2008-07-10'
|
||||
}
|
||||
|
||||
export default set
|
8
data-asia/DPt.ts
Normal file
8
data-asia/DPt.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { Serie } from '../interfaces'
|
||||
|
||||
const serie: Serie = {
|
||||
name: {},
|
||||
id: 'null'
|
||||
}
|
||||
|
||||
export default serie
|
18
data-asia/DPt/Pt1.ts
Normal file
18
data-asia/DPt/Pt1.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'Pt1',
|
||||
name: {
|
||||
ja: 'ギンガの覇道'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 96
|
||||
},
|
||||
releaseDate: '2008-10-10'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/DPt/Pt2.ts
Normal file
18
data-asia/DPt/Pt2.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'Pt2',
|
||||
name: {
|
||||
ja: '時の果ての絆'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 90
|
||||
},
|
||||
releaseDate: '2008-12-26'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/DPt/Pt3.ts
Normal file
18
data-asia/DPt/Pt3.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'Pt3',
|
||||
name: {
|
||||
ja: 'フロンティアの鼓動'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 100
|
||||
},
|
||||
releaseDate: '2009-03-06'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/DPt/Pt4.ts
Normal file
18
data-asia/DPt/Pt4.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../DPt'
|
||||
|
||||
const set: Set = {
|
||||
id: 'Pt4',
|
||||
name: {
|
||||
ja: 'アルセウス光臨'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 90
|
||||
},
|
||||
releaseDate: '2009-07-08'
|
||||
}
|
||||
|
||||
export default set
|
10
data-asia/L.ts
Normal file
10
data-asia/L.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import { Serie } from '../interfaces'
|
||||
|
||||
const serie: Serie = {
|
||||
name: {
|
||||
ja: 'LEGEND'
|
||||
},
|
||||
id: 'L'
|
||||
}
|
||||
|
||||
export default serie
|
18
data-asia/L/L1a.ts
Normal file
18
data-asia/L/L1a.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../L'
|
||||
|
||||
const set: Set = {
|
||||
id: 'L1a',
|
||||
name: {
|
||||
ja: 'ハートゴールドコレクション'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 70
|
||||
},
|
||||
releaseDate: '2009-10-09'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/L/L1b.ts
Normal file
18
data-asia/L/L1b.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../L'
|
||||
|
||||
const set: Set = {
|
||||
id: 'L1b',
|
||||
name: {
|
||||
ja: 'ソウルシルバーコレクション'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 70
|
||||
},
|
||||
releaseDate: '2009-10-09'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/L/L2.ts
Normal file
18
data-asia/L/L2.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../L'
|
||||
|
||||
const set: Set = {
|
||||
id: 'L2',
|
||||
name: {
|
||||
ja: 'よみがえる伝説'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 70
|
||||
},
|
||||
releaseDate: '2010-02-11'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/L/L3.ts
Normal file
18
data-asia/L/L3.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../L'
|
||||
|
||||
const set: Set = {
|
||||
id: 'L3',
|
||||
name: {
|
||||
ja: '頂上大激突'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 70
|
||||
},
|
||||
releaseDate: '2010-07-08'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/L/LL.ts
Normal file
18
data-asia/L/LL.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../L'
|
||||
|
||||
const set: Set = {
|
||||
id: 'LL',
|
||||
name: {
|
||||
ja: '強化パック ロストリンク'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 40
|
||||
},
|
||||
releaseDate: '2010-04-16'
|
||||
}
|
||||
|
||||
export default set
|
10
data-asia/PCG.ts
Normal file
10
data-asia/PCG.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import { Serie } from '../interfaces'
|
||||
|
||||
const serie: Serie = {
|
||||
name: {
|
||||
ja: 'PCG'
|
||||
},
|
||||
id: 'PCG'
|
||||
}
|
||||
|
||||
export default serie
|
18
data-asia/PCG/PCG1.ts
Normal file
18
data-asia/PCG/PCG1.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PCG1',
|
||||
name: {
|
||||
ja: '伝説の飛翔'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 82
|
||||
},
|
||||
releaseDate: '2004-04-09'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PCG/PCG10.ts
Normal file
18
data-asia/PCG/PCG10.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PCG10',
|
||||
name: {
|
||||
ja: 'ワールドチャンピオンズパック'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 108
|
||||
},
|
||||
releaseDate: '2007-07-05'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PCG/PCG2.ts
Normal file
18
data-asia/PCG/PCG2.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PCG2',
|
||||
name: {
|
||||
ja: '蒼空の激突'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 82
|
||||
},
|
||||
releaseDate: '2004-07-01'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PCG/PCG3.ts
Normal file
18
data-asia/PCG/PCG3.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PCG3',
|
||||
name: {
|
||||
ja: 'ロケット団の逆襲'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 84
|
||||
},
|
||||
releaseDate: '2004-10-15'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PCG/PCG4.ts
Normal file
18
data-asia/PCG/PCG4.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PCG4',
|
||||
name: {
|
||||
ja: '金の空、銀の海'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 106
|
||||
},
|
||||
releaseDate: '2005-04-08'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PCG/PCG5.ts
Normal file
18
data-asia/PCG/PCG5.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PCG5',
|
||||
name: {
|
||||
ja: 'まぼろしの森'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 86
|
||||
},
|
||||
releaseDate: '2005-06-30'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PCG/PCG6.ts
Normal file
18
data-asia/PCG/PCG6.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PCG6',
|
||||
name: {
|
||||
ja: 'ホロンの研究塔'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 86
|
||||
},
|
||||
releaseDate: '2005-10-28'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PCG/PCG7.ts
Normal file
18
data-asia/PCG/PCG7.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PCG7',
|
||||
name: {
|
||||
ja: 'ホロンの幻影'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 52
|
||||
},
|
||||
releaseDate: '2006-01-27'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PCG/PCG8.ts
Normal file
18
data-asia/PCG/PCG8.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PCG8',
|
||||
name: {
|
||||
ja: 'きせきの結晶'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 75
|
||||
},
|
||||
releaseDate: '2006-03-10'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PCG/PCG9.ts
Normal file
18
data-asia/PCG/PCG9.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PCG9',
|
||||
name: {
|
||||
ja: 'さいはての攻防'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 68
|
||||
},
|
||||
releaseDate: '2006-06-29'
|
||||
}
|
||||
|
||||
export default set
|
10
data-asia/PMCG.ts
Normal file
10
data-asia/PMCG.ts
Normal file
@ -0,0 +1,10 @@
|
||||
import { Serie } from '../interfaces'
|
||||
|
||||
const serie: Serie = {
|
||||
name: {
|
||||
ja: 'ポケットモンスターカードゲーム'
|
||||
},
|
||||
id: 'PMCG'
|
||||
}
|
||||
|
||||
export default serie
|
18
data-asia/PMCG/PMCG1.ts
Normal file
18
data-asia/PMCG/PMCG1.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PMCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PMCG1',
|
||||
name: {
|
||||
ja: '拡張パック'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 102
|
||||
},
|
||||
releaseDate: '1996-10-20'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PMCG/PMCG2.ts
Normal file
18
data-asia/PMCG/PMCG2.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PMCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PMCG2',
|
||||
name: {
|
||||
ja: 'ポケモンジャングル'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 48
|
||||
},
|
||||
releaseDate: '1997-03-05'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PMCG/PMCG3.ts
Normal file
18
data-asia/PMCG/PMCG3.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PMCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PMCG3',
|
||||
name: {
|
||||
ja: '化石の秘密'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 48
|
||||
},
|
||||
releaseDate: '1997-06-21'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PMCG/PMCG4.ts
Normal file
18
data-asia/PMCG/PMCG4.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PMCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PMCG4',
|
||||
name: {
|
||||
ja: 'ロケット団'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 65
|
||||
},
|
||||
releaseDate: '1997-11-21'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PMCG/PMCG5.ts
Normal file
18
data-asia/PMCG/PMCG5.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PMCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PMCG5',
|
||||
name: {
|
||||
ja: 'リーダーズスタジアム'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 96
|
||||
},
|
||||
releaseDate: '1998-10-24'
|
||||
}
|
||||
|
||||
export default set
|
18
data-asia/PMCG/PMCG6.ts
Normal file
18
data-asia/PMCG/PMCG6.ts
Normal file
@ -0,0 +1,18 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../PMCG'
|
||||
|
||||
const set: Set = {
|
||||
id: 'PMCG6',
|
||||
name: {
|
||||
ja: '闇からの挑戦'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 98
|
||||
},
|
||||
releaseDate: '1999-06-25'
|
||||
}
|
||||
|
||||
export default set
|
14
data-asia/S.ts
Normal file
14
data-asia/S.ts
Normal file
@ -0,0 +1,14 @@
|
||||
import { Serie } from '../interfaces'
|
||||
|
||||
const serie: Serie = {
|
||||
name: {
|
||||
ja: '剣と盾',
|
||||
'zh-tw': '劍&盾',
|
||||
id: 'Pedang & Perisai',
|
||||
th: 'ซอร์ด แอนด์ ชีลด์',
|
||||
ko: '검과 방패'
|
||||
},
|
||||
id: 'S'
|
||||
}
|
||||
|
||||
export default serie
|
24
data-asia/S/CS1.5.ts
Normal file
24
data-asia/S/CS1.5.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'CS1.5',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS1a.ts
Normal file
24
data-asia/S/CS1a.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'CS1a',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS1b.ts
Normal file
24
data-asia/S/CS1b.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'CS1b',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS2.5.ts
Normal file
24
data-asia/S/CS2.5.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'CS2.5',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS2a.ts
Normal file
24
data-asia/S/CS2a.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'CS2a',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS2b.ts
Normal file
24
data-asia/S/CS2b.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'CS2b',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS3.5.ts
Normal file
24
data-asia/S/CS3.5.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'CS3.5',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS3D.ts
Normal file
24
data-asia/S/CS3D.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'sv1a',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS3a.ts
Normal file
24
data-asia/S/CS3a.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'sv1a',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS3b.ts
Normal file
24
data-asia/S/CS3b.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'sv1a',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS4.5.ts
Normal file
24
data-asia/S/CS4.5.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'sv1a',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS4Da.ts
Normal file
24
data-asia/S/CS4Da.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'sv1a',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS4a.ts
Normal file
24
data-asia/S/CS4a.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'sv1a',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CS4b.ts
Normal file
24
data-asia/S/CS4b.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'sv1a',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
24
data-asia/S/CSA.ts
Normal file
24
data-asia/S/CSA.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'sv1a',
|
||||
name: {
|
||||
ja: 'トリプレットビート',
|
||||
ko: '트리플렛비트',
|
||||
'zh-tw': '三連音爆',
|
||||
id: 'Hantaman Triplet',
|
||||
th: 'ทริปเปิลบีต'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
// TODO: fill the rest
|
||||
|
||||
cardCount: {
|
||||
official: 101
|
||||
},
|
||||
releaseDate: '2024-04-26'
|
||||
}
|
||||
|
||||
export default set
|
22
data-asia/S/S-P.ts
Normal file
22
data-asia/S/S-P.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../S'
|
||||
|
||||
const set: Set = {
|
||||
id: 'S-P',
|
||||
name: {
|
||||
id: 'Kartu Promo',
|
||||
th: 'การ์ดโปรโม ซอร์ด แอนด์ ชีลด์'
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 0
|
||||
},
|
||||
releaseDate: {
|
||||
id: '2022-07-14',
|
||||
th: '2022-05-11'
|
||||
}
|
||||
}
|
||||
|
||||
export default set
|
49
data-asia/S/S-P/064.ts
Normal file
49
data-asia/S/S-P/064.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "破破舵輪VMAX"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
category: "Pokemon",
|
||||
hp: 330,
|
||||
types: ["Grass"],
|
||||
stage: "VMAX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "嗡嗡連鎖"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "對手的1隻寶可夢受到這隻寶可夢身上附加的【草】能量的數量×30點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||||
},
|
||||
|
||||
cost: ["Grass"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "極巨船錨"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用「極巨船錨」。"
|
||||
},
|
||||
|
||||
damage: 240,
|
||||
cost: ["Grass", "Grass", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S-P/065.ts
Normal file
50
data-asia/S/S-P/065.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "閃焰王牌VMAX"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
category: "Pokemon",
|
||||
hp: 320,
|
||||
types: ["Fire"],
|
||||
stage: "VMAX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "雙倍奉還"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加與在上個對手的回合這隻寶可夢受到的招式的傷害點相同數量的傷害。"
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
cost: ["Fire", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "極巨烈焰球"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。"
|
||||
},
|
||||
|
||||
damage: 170,
|
||||
cost: ["Fire", "Fire", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
39
data-asia/S/S-P/066.ts
Normal file
39
data-asia/S/S-P/066.ts
Normal file
@ -0,0 +1,39 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "莫魯貝可VMAX"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
category: "Pokemon",
|
||||
hp: 300,
|
||||
types: ["Lightning"],
|
||||
stage: "VMAX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "極巨放電"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "對手的所有備戰寶可夢也各受到20點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||||
},
|
||||
|
||||
damage: 180,
|
||||
cost: ["Lightning", "Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
40
data-asia/S/S-P/067.ts
Normal file
40
data-asia/S/S-P/067.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "櫻花寶"
|
||||
},
|
||||
|
||||
illustrator: "Lee HyunJung",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "身體越紅的櫻花寶含有的營養越豐富,味道也很甜很好吃。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "樹葉"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Grass"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
47
data-asia/S/S-P/068.ts
Normal file
47
data-asia/S/S-P/068.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "暖暖豬"
|
||||
},
|
||||
|
||||
illustrator: "Eri Yamaki",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "最喜歡吃烤過的樹果,但有時候會因為興奮過頭,把樹果烤得焦黑。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "衝撞"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "烈焰"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Fire", "Fire", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S-P/069.ts
Normal file
50
data-asia/S/S-P/069.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "伽勒爾 魔牆人偶"
|
||||
},
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會從腳底釋放出冷氣。一整天都會在自己凍住的地板上努力練習踢踏舞。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "拍擊"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Water"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "找到"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫選擇1張物品卡,在給對手看過後加入手牌。並且重洗牌庫。"
|
||||
},
|
||||
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
54
data-asia/S/S-P/070.ts
Normal file
54
data-asia/S/S-P/070.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "月亮伊布"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "在滿月之夜或是興奮的時候,牠身上圈圈一樣的花紋就會發出金黃色的光。"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "暗中奇襲"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "對手的身上放置有傷害指示物的1隻寶可夢受到60點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||||
},
|
||||
|
||||
cost: ["Darkness"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "月亮幻想"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的戰鬥寶可夢【混亂】。"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Darkness", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S-P/071.ts
Normal file
56
data-asia/S/S-P/071.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "嘟嘟利V"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 200,
|
||||
types: ["Colorless"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "接二連三"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在下個自己的回合,這隻寶可夢使用的招式,對對手的戰鬥寶可夢造成的傷害「+80」點。"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "爆走鑽"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這隻寶可夢也受到30點傷害。"
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Fighting",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S-P/072.ts
Normal file
50
data-asia/S/S-P/072.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "伊布"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "由於不穩定的基因,蘊含著各式各樣進化可能性的特殊寶可夢。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "準備"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的手牌選擇1張基本能量卡,附於這隻寶可夢身上。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "咬住"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
22
data-asia/S/S-P/073.ts
Normal file
22
data-asia/S/S-P/073.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "蜜葉"
|
||||
},
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫抽出與對手的備戰區的「寶可夢【V】」數量相同數量的卡。"
|
||||
},
|
||||
|
||||
trainerType: "Supporter",
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S-P/074.ts
Normal file
56
data-asia/S/S-P/074.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "噴火龍GX"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 250,
|
||||
types: ["Fire"],
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "翅膀攻擊"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "紅蓮風暴"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將這隻寶可夢身上所附加的3個【火】能量丟到棄牌區。"
|
||||
},
|
||||
|
||||
damage: 300,
|
||||
cost: ["Fire", "Fire", "Fire", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "怒火中燒GX"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "將對手的牌庫上方的10張丟到棄牌區。[對戰中,己方只可使用1次GX招式。]"
|
||||
},
|
||||
|
||||
cost: ["Fire", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "A"
|
||||
}
|
||||
|
||||
export default card
|
47
data-asia/S/S-P/075.ts
Normal file
47
data-asia/S/S-P/075.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "噴火龍V"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 220,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "利爪劈擊"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "火焰旋渦"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "選擇2個這隻寶可夢身上附加的能量,將其丟棄。"
|
||||
},
|
||||
|
||||
damage: 220,
|
||||
cost: ["Fire", "Fire", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
56
data-asia/S/S-P/076.ts
Normal file
56
data-asia/S/S-P/076.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "噴火龍"
|
||||
},
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會噴出彷彿連岩石都能燒焦的灼熱火焰。有時會引發森林火災。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "戰鬥意識"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合時,可使用1次。查看自己的牌庫上方3張卡,選擇其中1張卡加入手牌。將剩餘卡丟棄。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "王者火焰"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "增加自己的棄牌區的「丹帝」的張數×50點傷害。"
|
||||
},
|
||||
|
||||
damage: "100+",
|
||||
cost: ["Fire", "Fire"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
52
data-asia/S/S-P/077.ts
Normal file
52
data-asia/S/S-P/077.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "皮卡丘"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "最近發表了聚集大量皮卡丘來建造發電廠的計畫。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "電光一閃"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Lightning"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "電球"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Lightning", "Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Metal",
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "C"
|
||||
}
|
||||
|
||||
export default card
|
59
data-asia/S/S-P/078.ts
Normal file
59
data-asia/S/S-P/078.ts
Normal file
@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "皮卡丘"
|
||||
},
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "最近發表了聚集大量皮卡丘來建造發電廠的計畫。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "蹭蹭臉頰"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【麻痺】。"
|
||||
},
|
||||
|
||||
cost: ["Lightning"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "伏特攻擊"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這隻寶可夢也受到10點傷害。"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Lightning", "Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Metal",
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "C"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S-P/079.ts
Normal file
50
data-asia/S/S-P/079.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "皮卡丘"
|
||||
},
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "最近發表了聚集大量皮卡丘來建造發電廠的計畫。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "充電"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "從自己的牌庫選擇1張【雷】能量卡,附於這隻寶可夢身上。並且重洗牌庫。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "電球"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Lightning", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
50
data-asia/S/S-P/080.ts
Normal file
50
data-asia/S/S-P/080.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S-P"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "皮卡丘"
|
||||
},
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "最近發表了聚集大量皮卡丘來建造發電廠的計畫。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "搖尾巴"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "擲1次硬幣若為正面,則在下個對手的回合,受到這個招式的寶可夢無法使用招式。"
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "皮卡伏特"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Lightning", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user