1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

50
data-asia/SV/SVD/016.ts Normal file
View File

@ -0,0 +1,50 @@
import { Card } from "../../../interfaces"
import Set from "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "燈火幽靈"
},
illustrator: "Aya Kusube",
category: "Pokemon",
hp: 80,
types: ["Fire"],
description: {
'zh-tw': "偽裝成燈的樣子藏身在城鎮裡。一旦發現了臨近死期的人, 便會悄悄地跟在後面。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "火焰"
},
damage: 20,
cost: ["Fire"]
}, {
name: {
'zh-tw': "誘導火球"
},
effect: {
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。然後新上場的寶可夢受到30點傷害。"
},
cost: ["Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card