1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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

56
data-asia/S/S10a/027.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S10a"
const card: Card = {
set: Set,
name: {
'zh-tw': "光輝沙奈朵"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
'zh-tw': "有著預知未來的能力。在保護訓練家的時候, 會發揮出最強的力量。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "慈藹之幕"
},
effect: {
'zh-tw': "只要這隻寶可夢在場上自己的所有寶可夢受到對手的「寶可夢【V】」招式的傷害「-20」點。"
}
}],
attacks: [{
name: {
'zh-tw': "精神強念"
},
effect: {
'zh-tw': "增加對手的戰鬥寶可夢身上附加的能量的數量×20點傷害。"
},
damage: "70+",
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card