1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-12 00:41: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/S/S-P/133.ts Normal file
View File

@@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "小火焰猴"
},
illustrator: "Shin Nagasawa",
category: "Pokemon",
hp: 50,
types: ["Fire"],
description: {
'zh-tw': "肚子產生的瓦斯在屁股上燃燒。如果身體狀況不好的話,火焰就會變弱。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "火花"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量將其丟棄。"
},
damage: 30,
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "F"
}
export default card