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

51
data-asia/S/S10P/014.ts Normal file
View File

@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../S10P"
const card: Card = {
set: Set,
name: {
'zh-tw': "席多藍恩V"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 220,
types: ["Fire"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "熱灼燒"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。"
},
damage: 30,
cost: ["Fire", "Colorless"]
}, {
name: {
'zh-tw': "熔岩墜落"
},
effect: {
'zh-tw': "若場上有自己的競技場卡則增加90點傷害。"
},
damage: "90+",
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card