1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

58
data-asia/SV/SVLN/006.ts Normal file
View File

@ -0,0 +1,58 @@
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