mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add SV9 (#674)
This commit is contained in:
55
data-asia/SV/SV9/013.ts
Normal file
55
data-asia/SV/SV9/013.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV9"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ブーバー",
|
||||
'zh-tw': "鴨嘴火獸",
|
||||
'zh-cn': "鴨嘴火獸"
|
||||
},
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
dexId: [126],
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
ja: "火山の 火口近くで 見つかった。 口から 炎を 吐く。 体温は 1200度もある。",
|
||||
'zh-tw': "在火山口附近被發現。 會從口中吐出火焰。 體溫高達1200度。",
|
||||
'zh-cn': "在火山口附近被發現。 會從口中吐出火焰。 體溫高達1200度。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "やきこがす",
|
||||
'zh-tw': "灼燒",
|
||||
'zh-cn': "灼燒"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
effect: {
|
||||
ja: "コインを1回投げオモテなら、相手のバトルポケモンをやけどにする。",
|
||||
'zh-tw': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【灼傷】。",
|
||||
'zh-cn': "擲1次硬幣若為正面,則將對手的戰鬥寶可夢【灼傷】。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user