1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/SV/SV-P/009.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "超能豔鴕"
},
illustrator: "Sanosuke Sakuma",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
'zh-tw': "會從大大的眼睛放出 精神力量讓對手無法動彈。 有別外表,性格非常粗暴。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "極光增輝"
},
effect: {
'zh-tw': "將這隻寶可夢恢復「30」HP。"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "超念力"
},
damage: 60,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "G"
}
export default card