mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
52 lines
929 B
TypeScript
52 lines
929 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S6K"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "變隱龍"
|
||
},
|
||
|
||
illustrator: "KIYOTAKA OSHIYAMA",
|
||
category: "Pokemon",
|
||
hp: 90,
|
||
types: ["Colorless"],
|
||
|
||
description: {
|
||
'zh-tw': "就算是在不需要隱身的時候,體色也會隨心情和身體狀態而改變。顏色越濃代表牠越有活力。"
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
'zh-tw': "五顏六色變化"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "這隻寶可夢的屬性改為與這隻寶可夢身上附加的基本能量相同。(若身上附加的基本能量屬性有2種以上,則改為各自屬性。)"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "迴轉攻擊"
|
||
},
|
||
|
||
damage: 90,
|
||
cost: ["Colorless", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |