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

72 lines
2.0 KiB
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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "エーフィex",
id: "Espeon ex",
'zh-tw': "太陽伊布ex",
'zh-cn': "太陽伊布ex"
},
illustrator: "sui",
rarity: "None",
category: "Pokemon",
hp: 270,
types: ["Psychic"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Psychic", "Colorless", "Colorless"],
name: {
ja: "サイコアウト",
id: "Psyout",
'zh-tw': "精神出局",
'zh-cn': "精神出局"
},
damage: 160,
effect: {
ja: "相手の手札からオモテを見ないで1枚選び、トラッシュする。",
id: "Pilih 1 kartu dari Kartu Pegangan lawan tanpa melihat sisi depan, lalu buang ke Trash.",
'zh-tw': "在不看正面的情況下從對手的手牌選擇1張將其丟棄。",
'zh-cn': "在不看正面的情況下從對手的手牌選擇1張將其丟棄。"
}
}, {
cost: ["Grass", "Psychic", "Darkness"],
name: {
ja: "アマゼツ",
id: "Amazez",
'zh-tw': "阿賽斯特萊石",
'zh-cn': "阿賽斯特萊石"
},
effect: {
ja: "相手の進化しているポケモン全員の上から、それぞれ「進化カード」を1枚ずつはがして退化させる。はがしたカードは、相手の山札にもどして切る。",
id: "Turunkan tingkat evolusi semua Pokémon lawan yang telah berevolusi dengan melepas masing-masing 1 lembar kartu evolusi dari atasnya. Kartu yang dilepas dikocok kembali ke Deck lawan.",
'zh-tw': "從對手的所有進化的寶可夢身上各移除1張「進化卡」使其退化。將移除的卡放回對手的牌庫並重洗。",
'zh-cn': "從對手的所有進化的寶可夢身上各移除1張「進化卡」使其退化。將移除的卡放回對手的牌庫並重洗。"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H"
}
export default card