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

56 lines
916 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 "../SV7a"
const card: Card = {
set: Set,
name: {
ja: "ポワルン たいようのすがた"
},
illustrator: "Narano",
category: "Pokemon",
dexId: [351],
hp: 70,
types: ["Fire"],
description: {
ja: "晴れた 日の ポワルンの 姿。 ヒーターの前に 置く 実験では この 形に 変化しなかった。"
},
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
ja: "こがす"
},
effect: {
ja: "相手のバトルポケモンをやけどにする。"
}
}, {
cost: ["Fire", "Colorless"],
name: {
ja: "サニーアシスト"
},
damage: 50,
effect: {
ja: "このポケモンについているエネルギーをすべて、ベンチポケモン1匹につけ替える。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 0,
rarity: "None"
}
export default card