1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-15 01:41:59 +00:00

Compare commits

..

1 Commits

Author SHA1 Message Date
79455823c9 feat: Prepare to have datas changed
Signed-off-by: Avior <f.bouillon@aptatio.com>
2024-05-07 14:43:44 +02:00
12295 changed files with 2444 additions and 422489 deletions

View File

@@ -52,24 +52,6 @@
"contributions": [
"data"
]
},
{
"login": "spyworldxp",
"name": "Clement Yuan",
"avatar_url": "https://avatars.githubusercontent.com/u/1112701?v=4",
"profile": "http://imclement.com",
"contributions": [
"data"
]
},
{
"login": "Reloadaxe",
"name": "Benjamin Rousseliere",
"avatar_url": "https://avatars.githubusercontent.com/u/44167126?v=4",
"profile": "https://github.com/Reloadaxe",
"contributions": [
"data"
]
}
],
"contributorsPerLine": 7,
@@ -78,6 +60,5 @@
"repoType": "github",
"repoHost": "https://github.com",
"skipCi": true,
"commitConvention": "angular",
"commitType": "docs"
"commitConvention": "angular"
}

View File

@@ -1,25 +0,0 @@
meta {
name: Advanced Query
type: http
seq: 1
}
get {
url: {{BASE_URL}}/v2/en/cards?name=eq:Pikachu&hp=gte:60&hp=lt:70&localId=5&localId=not:tg&id=neq:cel25-5
body: none
auth: none
}
params:query {
name: eq:Pikachu
hp: gte:60
hp: lt:70
localId: 5
localId: not:tg
id: neq:cel25-5
}
assert {
res.status: eq 200
res.body: length 14
}

View File

@@ -1,3 +0,0 @@
vars {
BASE_URL: https://beta.api.tcgdex.net
}

View File

@@ -1,3 +1,3 @@
vars {
BASE_URL: http://127.0.0.1:3000
BASE_URL: http://localhost:3000
}

View File

@@ -1,17 +0,0 @@
meta {
name: 489 - Crash When sorting with Null values
type: http
seq: 6
}
get {
url: {{BASE_URL}}/v2/en/cards?name=pikachu&sort:field=hp&sort:order=DESC
body: none
auth: none
}
query {
name: pikachu
sort:field: hp
sort:order: DESC
}

View File

@@ -1,20 +0,0 @@
meta {
name: Random Card
type: http
seq: 1
}
get {
url: {{BASE_URL}}/v2/en/random/card?name=furret
body: none
auth: none
}
query {
name: furret
}
assert {
res.status: eq 200
res.body.name: contains Furret
}

View File

@@ -1,19 +0,0 @@
meta {
name: Random Serie
type: http
seq: 3
}
get {
url: {{BASE_URL}}/v2/en/random/serie?name=p
body: none
auth: none
}
query {
name: p
}
assert {
res.status: eq 200
}

View File

@@ -1,20 +0,0 @@
meta {
name: Random Set
type: http
seq: 2
}
get {
url: {{BASE_URL}}/v2/en/random/set?name=sword
body: none
auth: none
}
query {
name: sword
}
assert {
res.status: eq 200
res.body.name: contains Sword
}

View File

@@ -1,21 +0,0 @@
meta {
name: Advanced Query
type: http
seq: 4
}
get {
url: {{BASE_URL}}/v2/en/sets?cardCount.official=gt:64&id=swsh
body: none
auth: none
}
params:query {
cardCount.official:gt: 64
id: swsh
}
assert {
res.status: eq 200
res.body: length 17
}

View File

@@ -1,16 +0,0 @@
meta {
name: Get a card by set name
type: http
seq: 6
}
get {
url: {{BASE_URL}}/v2/en/sets/Crystal%20Guardians/10
body: none
auth: none
}
assert {
res.status: eq 200
res.body.id: eq ex14-10
}

View File

@@ -1,16 +0,0 @@
meta {
name: Get a set by name
type: http
seq: 5
}
get {
url: {{BASE_URL}}/v2/en/sets/Crystal%20Guardians
body: none
auth: none
}
assert {
res.status: eq 200
res.body.id: eq ex14
}

View File

@@ -1,5 +1,5 @@
<!--
Thanks for your Pull Request, Please provide the related Issue using "Fix #0" or describe the change(s) you made.
The issue title must follow Conventional Commit conventionalcommits.org.
The issue title must follow Conventional Commit (verified by Github Actions) conventionalcommits.org.
More informations at https://github.com/tcgdex/cards-database/blob/master/CONTRIBUTING.md
-->

View File

@@ -16,8 +16,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Docker meta
id: meta
@@ -40,7 +38,6 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USER }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
- name: Login to Github Packages
uses: docker/login-action@v3
@@ -48,16 +45,15 @@ jobs:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.DOCKER_TOKEN }}
if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v6
uses: docker/build-push-action@v5
with:
context: .
push: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }}
push: true
file: ./Dockerfile
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

View File

@@ -0,0 +1,14 @@
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

View File

@@ -17,11 +17,10 @@ jobs:
- name: Setup BunJS
uses: oven-sh/setup-bun@v2
uses: oven-sh/setup-bun@v1
- name: Install deps
run: |
bun install -g @usebruno/cli
bun install --frozen-lockfile
cd server
bun install --frozen-lockfile
@@ -32,11 +31,3 @@ jobs:
bun run validate
cd server
bun run validate
- name: Validate some requests
run: |
cd server
bun run start &
sleep 10
cd ../.bruno
bru run --env Developpement

View File

@@ -1,12 +1,8 @@
FROM docker.io/oven/bun:1-alpine AS build
FROM docker.io/oven/bun:1-alpine as BUILD_IMAGE
# go to work folder
WORKDIR /usr/src/app
# Add git as it is used to fetch updated times
RUN apk add git &&\
git config --global safe.directory '*'
ADD --chown=bun:bun package.json bun.lockb ./
ADD --chown=bun:bun server/package.json server/bun.lockb ./server/
@@ -28,7 +24,7 @@ rm -rf node_modules && \
bun install --frozen-install --production
# go to another VM
FROM docker.io/oven/bun:1-alpine AS prod
FROM docker.io/oven/bun:1-alpine as PROD_IMAGE
# inform software to be in production
ENV NODE_ENV=production
@@ -40,11 +36,11 @@ USER bun
WORKDIR /usr/src/app
# copy from build image
COPY --chown=bun:bun --from=build /usr/src/app/server/generated ./generated
COPY --chown=bun:bun --from=build /usr/src/app/server/node_modules ./node_modules
COPY --chown=bun:bun --from=build /usr/src/app/server/src ./src
COPY --chown=bun:bun --from=build /usr/src/app/server/public ./public
COPY --chown=bun:bun --from=build /usr/src/app/server/package.json ./package.json
COPY --chown=bun:bun --from=BUILD_IMAGE /usr/src/app/server/generated ./generated
COPY --chown=bun:bun --from=BUILD_IMAGE /usr/src/app/server/node_modules ./node_modules
COPY --chown=bun:bun --from=BUILD_IMAGE /usr/src/app/server/src ./src
COPY --chown=bun:bun --from=BUILD_IMAGE /usr/src/app/server/public ./public
COPY --chown=bun:bun --from=BUILD_IMAGE /usr/src/app/server/package.json ./package.json
# Expose port
EXPOSE 3000

View File

@@ -13,11 +13,11 @@
<a href="https://github.com/tcgdex/cards-database/stargazers">
<img src="https://img.shields.io/github/stars/tcgdex/cards-database?style=flat-square" alt="Github stars">
</a>
<a href="https://github.com/tcgdex/cards-database/actions">
<img src="https://img.shields.io/github/actions/workflow/status/TCGdex/cards-database/build.yml?style=flat-square" alt="Compiler build passing" />
<a href="https://github.com/tcgdex/compiler">
<img src="https://img.shields.io/github/workflow/status/tcgdex/cards-database/Compile?style=flat-square" alt="Compiler build passing" />
</a>
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
<a href="#contributors-"><img src="https://img.shields.io/badge/all_contributors-7-orange.svg?style=flat-square" alt="All Contributors Badge" /></a>
<a href="#contributors-"><img src="https://img.shields.io/badge/all_contributors-5-orange.svg?style=flat-square" alt="All Contributors Badge" /></a>
<!-- ALL-CONTRIBUTORS-BADGE:END -->
</p>
@@ -90,8 +90,6 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Kevin-Adrea"><img src="https://avatars.githubusercontent.com/u/36231620?v=4?s=100" width="100px;" alt="Kevin-Adrea"/><br /><sub><b>Kevin-Adrea</b></sub></a><br /><a href="https://github.com/tcgdex/cards-database/issues?q=author%3AKevin-Adrea" title="Bug reports">🐛</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Maxopoly"><img src="https://avatars.githubusercontent.com/u/12138136?v=4?s=100" width="100px;" alt="Maxopoly"/><br /><sub><b>Maxopoly</b></sub></a><br /><a href="#data-Maxopoly" title="Data">🔣</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/calli23"><img src="https://avatars.githubusercontent.com/u/24553863?v=4?s=100" width="100px;" alt="calli23"/><br /><sub><b>calli23</b></sub></a><br /><a href="#data-calli23" title="Data">🔣</a></td>
<td align="center" valign="top" width="14.28%"><a href="http://imclement.com"><img src="https://avatars.githubusercontent.com/u/1112701?v=4?s=100" width="100px;" alt="Clement Yuan"/><br /><sub><b>Clement Yuan</b></sub></a><br /><a href="#data-spyworldxp" title="Data">🔣</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/Reloadaxe"><img src="https://avatars.githubusercontent.com/u/44167126?v=4?s=100" width="100px;" alt="Benjamin Rousseliere"/><br /><sub><b>Benjamin Rousseliere</b></sub></a><br /><a href="#data-Reloadaxe" title="Data">🔣</a></td>
</tr>
</tbody>
</table>

BIN
bun.lockb

Binary file not shown.

View File

@@ -1,10 +0,0 @@
import { Serie } from '../interfaces'
const serie: Serie = {
name: {
ja: 'ADV'
},
id: 'ADV'
}
export default serie

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,8 +0,0 @@
import { Serie } from '../interfaces'
const serie: Serie = {
name: {},
id: 'null'
}
export default serie

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,19 +0,0 @@
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

View File

@@ -1,8 +0,0 @@
import { Serie } from '../interfaces'
const serie: Serie = {
name: {},
id: 'null'
}
export default serie

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,8 +0,0 @@
import { Serie } from '../interfaces'
const serie: Serie = {
name: {},
id: 'null'
}
export default serie

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,10 +0,0 @@
import { Serie } from '../interfaces'
const serie: Serie = {
name: {
ja: 'LEGEND'
},
id: 'L'
}
export default serie

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,10 +0,0 @@
import { Serie } from '../interfaces'
const serie: Serie = {
name: {
ja: 'PCG'
},
id: 'PCG'
}
export default serie

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,10 +0,0 @@
import { Serie } from '../interfaces'
const serie: Serie = {
name: {
ja: 'ポケットモンスターカードゲーム'
},
id: 'PMCG'
}
export default serie

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,18 +0,0 @@
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

View File

@@ -1,14 +0,0 @@
import { Serie } from '../interfaces'
const serie: Serie = {
name: {
ja: '剣と盾',
'zh-tw': '劍&盾',
id: 'Pedang & Perisai',
th: 'ซอร์ด แอนด์ ชีลด์',
ko: '검과 방패'
},
id: 'S'
}
export default serie

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,24 +0,0 @@
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

View File

@@ -1,22 +0,0 @@
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

View File

@@ -1,49 +0,0 @@
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

View File

@@ -1,50 +0,0 @@
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

Some files were not shown because too many files have changed in this diff Show More