mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
46 lines
774 B
TypeScript
46 lines
774 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../S10a"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "洗翠 黏美龍V"
|
|
},
|
|
|
|
illustrator: "5ban Graphics",
|
|
category: "Pokemon",
|
|
hp: 220,
|
|
types: ["Dragon"],
|
|
stage: "Basic",
|
|
suffix: "V",
|
|
|
|
attacks: [{
|
|
name: {
|
|
'zh-tw': "滑溜打滾"
|
|
},
|
|
|
|
effect: {
|
|
'zh-tw': "將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]"
|
|
},
|
|
|
|
damage: 60,
|
|
cost: ["Water", "Metal"]
|
|
}, {
|
|
name: {
|
|
'zh-tw': "硬殼回轉"
|
|
},
|
|
|
|
effect: {
|
|
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。"
|
|
},
|
|
|
|
damage: 140,
|
|
cost: ["Water", "Metal", "Colorless"]
|
|
}],
|
|
|
|
retreat: 3,
|
|
regulationMark: "F"
|
|
}
|
|
|
|
export default card |