mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
60
data-asia/SV/SV6/017.ts
Normal file
60
data-asia/SV/SV6/017.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV6"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ダルマッカ",
|
||||
'zh-tw': "火紅不倒翁"
|
||||
},
|
||||
|
||||
category: "Pokemon",
|
||||
rarity: "Common",
|
||||
illustrator: "osare",
|
||||
dexId: [554],
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
ja: "体の 中で 燃える 炎が パワーの 源。 火が 小さく なると たちまち 眠ってしまう。",
|
||||
'zh-tw': "能量之源是體內的火焰。 如果火焰變小了, 牠馬上就會睡著。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
ja: "かいりき",
|
||||
'zh-tw': "怪力"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Fire", "Fire"],
|
||||
|
||||
name: {
|
||||
ja: "ほのおタックル",
|
||||
'zh-tw': "火焰衝撞"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンにも20ダメージ。",
|
||||
'zh-tw': "這隻寶可夢也受到20點傷害。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user