1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

59 lines
917 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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