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

51 lines
780 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 "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "沙螺蟒V"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 220,
types: ["Fighting"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "吞沙"
},
effect: {
'zh-tw': "從自己的棄牌區選擇1張【鬥】能量卡附於這隻寶可夢身上。"
},
damage: 30,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "沙之吐息"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量將其丟棄。"
},
damage: 220,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "D"
}
export default card