mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
50 lines
919 B
TypeScript
50 lines
919 B
TypeScript
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 |