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

50 lines
919 B
TypeScript
Raw Permalink 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 "../SV3a"
const card: Card = {
set: Set,
name: {
ja: "ガブリアスex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 320,
types: ["Water"],
stage: "Stage2",
suffix: "EX",
attacks: [{
cost: ["Fighting"],
name: {
ja: "ハイドロランダー"
},
damage: 160,
effect: {
ja: "自分のトラッシュから「基本エネルギー」を3枚まで選び、ベンチポケモンに好きなようにつける。"
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ソニックダイブ"
},
effect: {
ja: "このポケモンについているエネルギーを2個トラッシュし、相手のポケモン1匹に、120ダメージ。ベンチは弱点・抵抗力を計算しない。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 0
}
export default card