1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Update asian sets (#554)

This commit is contained in:
2024-11-05 23:46:04 +01:00
committed by GitHub
parent 64bcd0524d
commit c1d83caca0
546 changed files with 26414 additions and 0 deletions

48
data-asia/SV/SV7a/007.ts Normal file
View File

@ -0,0 +1,48 @@
import { Card } from "../../../interfaces"
import Set from "../SV7a"
const card: Card = {
set: Set,
name: {
'zh-tw': "爆香猴",
'zh-cn': "爆香猴",
ja: "バオップ"
},
illustrator: "Wintr Wandr",
category: "Pokemon",
hp: 60,
types: ["Fire"],
description: {
'zh-tw': "智商很高, 有把樹果烤過再吃的習性。 喜歡幫助人類。",
'zh-cn': "智商很高, 有把樹果烤過再吃的習性。 喜歡幫助人類。",
ja: "知能が 高く 木の実は 焼いてから 食べる 習性。 人の 手伝いを 好んでいる。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "烈焰",
'zh-cn': "烈焰",
ja: "かえん"
},
damage: 20,
cost: ["Fire"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "H",
rarity: "Common",
dexId: [513]
}
export default card