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

50 lines
855 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 "../SI"
const card: Card = {
set: Set,
name: {
'zh-tw': "沙螺蟒VMAX"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 320,
types: ["Fighting"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "沙之脈衝"
},
effect: {
'zh-tw': "對手的所有備戰寶可夢也各受到20點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 60,
cost: ["Fighting"]
}, {
name: {
'zh-tw': "超極巨旋風氣旋"
},
effect: {
'zh-tw': "選擇自己的場上寶可夢身上附加的任意數量的能量,以任意方式改附於自己的寶可夢身上。"
},
damage: 180,
cost: ["Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card