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

44
data-asia/SV/SV-P/003.ts Normal file
View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "呆火鱷"
},
illustrator: "Ryuta Fuse",
category: "Pokemon",
hp: 80,
types: ["Fire"],
description: {
'zh-tw': "會躺在溫熱的岩石上, 用四角形的鱗片所吸收的 熱能來製造火之能量。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "火焰灼燒"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。"
},
damage: 30,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card