mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
51 lines
779 B
TypeScript
51 lines
779 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SVD"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "故勒頓ex"
|
||
},
|
||
|
||
illustrator: "aky CG Works",
|
||
category: "Pokemon",
|
||
hp: 230,
|
||
types: ["Fighting"],
|
||
stage: "Basic",
|
||
suffix: "EX",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "分岔光束"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "對手的2隻備戰寶可夢也各受到20點傷害。[在備戰區不計算弱點・抵抗力。]"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Fighting"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "蓋亞壓制"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "這隻寶可夢也受到30點傷害。"
|
||
},
|
||
|
||
damage: 230,
|
||
cost: ["Fighting", "Fighting", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |