mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
59 lines
917 B
TypeScript
59 lines
917 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SVLN"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
ja: "サンダー"
|
||
},
|
||
|
||
illustrator: "Nisota Niso",
|
||
category: "Pokemon",
|
||
dexId: [145],
|
||
hp: 110,
|
||
types: ["Lightning"],
|
||
|
||
description: {
|
||
ja: "電気を 自在に 操る。 真っ黒な 雷雲の 中に 巣があると 言い伝えられている。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
cost: ["Lightning", "Colorless"],
|
||
|
||
name: {
|
||
ja: "ついげきボルト"
|
||
},
|
||
|
||
damage: "20+",
|
||
|
||
effect: {
|
||
ja: "相手のバトルポケモンにのっているダメカンの数×10ダメージ追加。"
|
||
}
|
||
}, {
|
||
cost: ["Lightning", "Colorless", "Colorless"],
|
||
|
||
name: {
|
||
ja: "ドリルくちばし"
|
||
},
|
||
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 1,
|
||
rarity: "None"
|
||
}
|
||
|
||
export default card |