1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00

61 lines
1.0 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 "../SV8"
const card: Card = {
set: Set,
name: {
ja: "エムリット"
},
illustrator: "HYOGONOSUKE",
rarity: "Common",
category: "Pokemon",
dexId: [481],
hp: 70,
types: ["Psychic"],
description: {
ja: "悲しみの 苦しさと 喜びの 尊さを 人々に 教えた。 感情の神と 呼ばれている。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "こころをみたす"
},
effect: {
ja: "自分の手札から「基本エネルギー」を2枚まで選び、自分のポケモンに好きなようにつける。"
}
}, {
cost: ["Psychic", "Psychic"],
name: {
ja: "ゴッドバースト"
},
damage: 160,
effect: {
ja: "自分のベンチに「ユクシー」「アグノム」がいないなら、このワザは失敗。"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1
}
export default card