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

58 lines
901 B
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 "../SVLN"
const card: Card = {
set: Set,
name: {
ja: "ゼルネアス"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
dexId: [716],
hp: 130,
types: ["Psychic"],
description: {
ja: "永遠の 命を 分け与えると 言われている。樹木の 姿で 1000年 眠り 復活する。"
},
stage: "Basic",
attacks: [{
cost: ["Psychic", "Colorless"],
name: {
ja: "オーロラゲイン"
},
damage: 30,
effect: {
ja: "このポケモンのHPを「30」回復する。"
}
}, {
cost: ["Psychic", "Psychic", "Colorless"],
name: {
ja: "ギガインパクト"
},
damage: 130,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。"
}
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
rarity: "None"
}
export default card