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

71 lines
1.8 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: "Yuya Oka",
rarity: "Rare",
category: "Pokemon",
dexId: [1002],
hp: 120,
types: ["Water"],
description: {
ja: "大昔に 剣によって 露と消えた 者たちの 憎しみが 雪を まとい ポケモンになった。",
'zh-tw': "遙遠過去喪命於劍下者 的憎恨之情纏繞在雪上, 變成了寶可夢。",
'zh-cn': "遙遠過去喪命於劍下者 的憎恨之情纏繞在雪上, 變成了寶可夢。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "ゆきにしずめる",
'zh-tw': "‌‌沉雪",
'zh-cn': "‌‌沉雪"
},
effect: {
ja: "自分の番に、このカードを手札からベンチに出したとき、1回使える。場に出ているスタジアムをトラッシュする。",
'zh-tw': "在自己的回合從手牌將這張卡放置於備戰區時可使用1次。將場上的競技場卡丟棄。",
'zh-cn': "在自己的回合從手牌將這張卡放置於備戰區時可使用1次。將場上的競技場卡丟棄。"
}
}],
attacks: [{
cost: ["Water", "Water", "Colorless"],
name: {
ja: "アイシクルループ",
'zh-tw': "冰柱閉環",
'zh-cn': "冰柱閉環"
},
damage: 120,
effect: {
ja: "このポケモンについているエネルギーを1個選び、手札にもどす。",
'zh-tw': "選擇1個這隻寶可夢身上附加的能量放回手牌。",
'zh-cn': "選擇1個這隻寶可夢身上附加的能量放回手牌。"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card