mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
58 lines
901 B
TypeScript
58 lines
901 B
TypeScript
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 |