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

56 lines
909 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 "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "蒼響"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
'zh-tw': "用過去使用的兵器武裝自己。即使是超極巨化寶可夢,也能以一劍將之拿下。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "金屬武器"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張基本能量卡附於這隻寶可夢身上。"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "奇幻之劍"
},
effect: {
'zh-tw': "若對手的場上有「寶可夢【VMAX】」則增加150點傷害。"
},
damage: "150+",
cost: ["Grass", "Psychic", "Metal"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card