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

43 lines
790 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 "../S10b"
const card: Card = {
set: Set,
name: {
'zh-tw': "百變怪"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 70,
types: ["Colorless"],
description: {
'zh-tw': "能夠藉由重組全身的細胞,變得與看到的東西一模一樣,然而一旦放鬆就會變回原形。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "突然變化"
},
effect: {
'zh-tw': "這隻寶可夢可使用自己棄牌區的【基礎】寶可夢(「擁有規則的寶可夢」除外)持有的所有招式。[需要有足夠使用招式的能量。]"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card