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

65 lines
1.6 KiB
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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "パルデア ケンタロス",
'zh-tw': "帕底亞 肯泰羅",
'zh-cn': "帕底亞 肯泰羅"
},
illustrator: "toi8",
rarity: "Uncommon",
category: "Pokemon",
dexId: [128],
hp: 130,
types: ["Water"],
description: {
ja: "ツノから 水を 吹きだし 泳ぐ。 脂肪分が 多く 浮きやすいのが ウォーター種の 特徴。",
'zh-tw': "會從角噴出水來游泳。 脂肪含量高而容易浮在水上 是水瀾種的特徵。",
'zh-cn': "會從角噴出水來游泳。 脂肪含量高而容易浮在水上 是水瀾種的特徵。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "かちあげホーン",
'zh-tw': "上搗角擊",
'zh-cn': "上搗角擊"
},
damage: 30,
effect: {
ja: "のぞむなら、相手のバトル場の2進化ポケモンについているエネルギーを2個選び、相手の手札にもどす。",
'zh-tw': "若希望選擇2個對手的戰鬥場的【2階進化】寶可夢身上附加的能量放回對手的手牌。",
'zh-cn': "若希望選擇2個對手的戰鬥場的【2階進化】寶可夢身上附加的能量放回對手的手牌。"
}
}, {
cost: ["Water", "Water", "Colorless"],
name: {
ja: "ジェットヘッド",
'zh-tw': "噴射頭擊",
'zh-cn': "噴射頭擊"
},
damage: 100
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card