mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
47 lines
867 B
TypeScript
47 lines
867 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S10a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "洗翠 黏美龍"
|
||
},
|
||
|
||
illustrator: "Akira Komayama",
|
||
category: "Pokemon",
|
||
hp: 160,
|
||
types: ["Dragon"],
|
||
|
||
description: {
|
||
'zh-tw': "能自在操縱可剛可柔的金屬外殼。性情執著且厭惡孤獨,一旦喜愛的 對象離開自己便會怒不可遏。"
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
'zh-tw': "鋼之歸宿"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "只要這隻寶可夢在場上,自己的所有身上附有【鋼】能量的【基礎】寶可夢,不會受到對手的「寶可夢【V】」招式的傷害。"
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "重磅衝擊"
|
||
},
|
||
|
||
damage: 140,
|
||
cost: ["Water", "Metal", "Colorless"]
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "F"
|
||
}
|
||
|
||
export default card |