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

51 lines
818 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 "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "パルデア ウパー"
},
illustrator: "Miki Tanaka",
category: "Pokemon",
dexId: [194],
hp: 60,
types: ["Darkness"],
description: {
ja: "縄張り争いに 敗れて 陸で 暮らすうちに 毒の 粘膜で 体を 保護するように 変わった。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "すみかをさがす"
},
effect: {
ja: "自分の山札からスタジアムを1枚選び、相手に見せて、手札に加える。そして山札を切る。"
}
}, {
cost: ["Darkness"],
name: {
ja: "ぶつかる"
},
damage: 10
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2
}
export default card