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

55
data-asia/S/SC2b/010.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SC2b"
const card: Card = {
set: Set,
name: {
'zh-tw': "席多藍恩"
},
illustrator: "Anesaki Dynamic",
category: "Pokemon",
hp: 130,
types: ["Fire"],
description: {
'zh-tw': "體內流著如熔岩般滾燙的血液。棲息在火山的洞穴裡。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "火焰牙"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。"
},
damage: 30,
cost: ["Fire", "Colorless"]
}, {
name: {
'zh-tw': "激狂閃焰"
},
effect: {
'zh-tw': "增加這隻寶可夢身上放置的傷害指示物的數量×10點傷害。"
},
damage: "80+",
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 4,
regulationMark: "D"
}
export default card