1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

63 lines
1.5 KiB
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 "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "クエスパトラex",
'zh-tw': "超能豔鴕ex",
id: "Espathra ex"
},
illustrator: "takuyoa",
category: "Pokemon",
hp: 260,
types: ["Grass"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "まばゆいしせん",
'zh-tw': "奪目視線",
id: "Pandangan Menyilaukan"
},
effect: {
ja: "このポケモンがバトル場にいるかぎり、相手のバトルポケモンは、ワザを使うためのエネルギーが、エネルギー1個ぶん多くなる。",
'zh-tw': "只要這隻寶可夢在戰鬥場上對手的戰鬥寶可夢使用招式所需的能量增加1個【無】能量。",
id: "Selama Pokémon ini ada di Arena Bertarung, Energi yang dibutuhkan oleh Pokémon Bertarung lawan untuk menggunakan serangan bertambah 1 Energi {Bening}."
}
}],
attacks: [{
cost: ["Psychic"],
name: {
ja: "サイコボール",
'zh-tw': "精神球",
id: "Psychoball"
},
damage: "30+",
effect: {
ja: "おたがいのバトルポケモンについているエネルギーの数×30ダメージ追加。",
'zh-tw': "增加雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。",
id: "Kerusakan yang diberikan bertambah sejumlah 30 untuk tiap Energi yang dikenakan pada Pokémon Bertarung kedua pemain."
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card