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

57 lines
1014 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 "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "パーモット"
},
illustrator: "Kouki Saitou",
category: "Pokemon",
dexId: [923],
hp: 130,
types: ["Lightning"],
description: {
ja: "ふわふわの 体毛が バッテリー。 電気自動車と 同じ 量の 電気を 蓄えることができる。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "でんきおこし"
},
effect: {
ja: "自分の番に1回使える。自分の山札から「基本エネルギー」を1枚選び、このポケモンにつける。そして山札を切る。"
}
}],
attacks: [{
cost: ["Lightning", "Lightning", "Colorless"],
name: {
ja: "エレクトロパウ"
},
damage: 230,
effect: {
ja: "このポケモンについているエネルギーを、すべてトラッシュする。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 0
}
export default card