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/SV/SVD/052.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "飄飄球"
},
illustrator: "Taira Akitsu",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
description: {
'zh-tw': "據說有些因為誤認成氣球,而把牠拿在手上的小孩, 會就此消失無蹤。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "起風"
},
damage: 10,
cost: ["Colorless", "Colorless"]
}, {
name: {
'zh-tw': "氣球爆破"
},
effect: {
'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×30點傷害。"
},
damage: "30×",
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card