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

54
data-asia/SV/SV-P/059.ts Normal file
View File

@ -0,0 +1,54 @@
import { Card } from "../../../interfaces"
import Set from "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "爆香猴"
},
illustrator: "313",
category: "Pokemon",
hp: 70,
types: ["Fire"],
description: {
'zh-tw': "在火山的洞穴裡生活。 頭上的毛髮叢中熊熊燃燒著, 溫度高達300度。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "呼朋引伴"
},
effect: {
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "灼燒"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。"
},
damage: 20,
cost: ["Fire", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card