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

45 lines
762 B
TypeScript
Raw Permalink 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 "../S9"
const card: Card = {
set: Set,
name: {
'zh-tw': "波皇子",
ja: "ポッタイシ"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 90,
types: ["Water"],
description: {
'zh-tw': "從不結交夥伴,獨自生活。用翅膀發出的強烈一擊 能把大樹劈成兩半。",
ja: "仲間を 作らずに 暮らす。 翼の 強烈な 一撃は 大木を 真っ二つに へし折る。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "啄",
ja: "つつく"
},
damage: 30,
cost: ["Water"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [394]
}
export default card