1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

59
data-asia/S/S8a/017.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../S8a"
const card: Card = {
set: Set,
name: {
'zh-tw': "露奈雅拉"
},
illustrator: "kirisAki",
category: "Pokemon",
hp: 160,
types: ["Psychic"],
description: {
'zh-tw': "有時會從通往異世界的洞穴裡把未知的力量和生命召喚到這個世界來。"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "月光傷痛"
},
effect: {
'zh-tw': "在對手的所有寶可夢身上放置傷害指示物直到各寶可夢身上的傷害指示物數量變為2倍為止。"
},
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "精神子彈"
},
effect: {
'zh-tw': "對手的1隻備戰寶可夢也受到30點傷害。[在備戰區不計算弱點・抵抗力。]"
},
damage: 130,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "E"
}
export default card