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

60
data-asia/SV/SV6/018.ts Normal file
View 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: "Uncommon",
illustrator: "OKUBO",
dexId: [555],
hp: 140,
types: ["Fire"],
description: {
ja: "血気 盛んな ポケモン。 太い 腕から 繰りだす パンチは ダンプカーも 粉々に するぞ。",
'zh-tw': "總是熱血沸騰的寶可夢。 牠厚重的手臂使出的拳擊 甚至能把砂石車打得粉碎。"
},
stage: "Stage1",
attacks: [{
cost: ["Fire", "Fire"],
name: {
ja: "ころがりタックル",
'zh-tw': "滾動衝撞"
},
damage: 60
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "もうかのとっしん",
'zh-tw': "猛火猛撞"
},
damage: 210,
effect: {
ja: "このポケモンにも70ダメージ。",
'zh-tw': "這隻寶可夢也受到70點傷害。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card