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

47 lines
837 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 "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "黏美龍"
},
illustrator: "Nagomi Nijo",
category: "Pokemon",
hp: 160,
types: ["Dragon"],
description: {
'zh-tw': "用伸長角產生的力道來攻擊對手,產生的威力比重量級拳擊手的拳擊還強100倍。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
'zh-tw': "黏黏滑滑空間"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上對手從手牌將能量附於寶可夢身上時附上前擲1次硬幣。若為反面則那個能量不附上將其丟棄。"
}
}],
attacks: [{
name: {
'zh-tw': "光炮尾"
},
damage: 120,
cost: ["Water", "Psychic"]
}],
retreat: 3,
regulationMark: "E"
}
export default card