mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
51 lines
780 B
TypeScript
51 lines
780 B
TypeScript
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 |