1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

55
data-asia/SV/SV2D/074.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "ライチュウ"
},
illustrator: "Toshinao Aoki",
category: "Pokemon",
dexId: [26],
hp: 140,
types: ["Lightning"],
description: {
ja: "尻尾が アースの 役目をはたして 電気を 地面に 逃がすので 自分自身は しびれたりしない。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "エレキチャージ"
},
effect: {
ja: "自分の山札から「基本エネルギー」を2枚まで選び、このポケモンにつける。そして山札を切る。"
}
}, {
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "10まんボルト"
},
damage: 200,
effect: {
ja: "このポケモンについているエネルギーを、すべてトラッシュする。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card