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:
55
data-asia/SV/SV2D/074.ts
Normal file
55
data-asia/SV/SV2D/074.ts
Normal 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
|
Reference in New Issue
Block a user