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

50 lines
773 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 "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "洗翠 索羅亞克V"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 210,
types: ["Colorless"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "虛無折返"
},
effect: {
'zh-tw': "若希望,將這隻寶可夢與備戰寶可夢互換。"
},
damage: 30
}, {
name: {
'zh-tw': "暗影旋風"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量改附於備戰寶可夢身上。"
},
damage: 130,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card