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

49
data-asia/S/S9a/015.ts Normal file
View File

@ -0,0 +1,49 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "小獅獅",
ja: "シシコ"
},
illustrator: "Sekio",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
'zh-tw': "血氣方剛且好奇心旺盛。 當牠生氣或是開始戰鬥時, 短短的鬃毛就會變熱。",
ja: "血気盛んで 好奇心旺盛。 怒ったり 戦いが 始まると 短い たてがみは 熱くなる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "灼熱",
ja: "こがす"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。",
ja: "相手のバトルポケモンをやけどにする。"
},
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "F",
rarity: "Common",
dexId: [667]
}
export default card