1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

57 lines
1010 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "胡帕V",
ja: "フーパV"
},
illustrator: "OKACHEKE",
category: "Pokemon",
hp: 220,
types: ["Darkness"],
stage: "Basic",
suffix: "V",
abilities: [{
type: "Ability",
name: {
'zh-tw': "雙面",
ja: "ダブルフェイス"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上改為【超】與【惡】2種屬性。",
ja: "このポケモンは、場にいるかぎりとの2つのタイプになる。"
}
}],
attacks: [{
name: {
'zh-tw': "暗影衝擊",
ja: "シャドーインパクト"
},
effect: {
'zh-tw': "在自己的1隻寶可夢身上放置3個傷害指示物。",
ja: "自分のポケモン1匹に、ダメカンを3個のせる。"
},
damage: 170,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card