1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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

65
data-asia/SV/SV3/018.ts Normal file
View File

@ -0,0 +1,65 @@
import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ヒヒダルマ",
'zh-tw': "達摩狒狒",
th: "ฮิฮิดารุมะ"
},
illustrator: "Yuya Oka",
rarity: "Uncommon",
category: "Pokemon",
dexId: [555],
hp: 140,
types: ["Fire"],
description: {
ja: "体内の 炎が 燃え盛るほど パワーが 高まる。 その 温度は 1400度を 超える ことも。",
'zh-tw': "體內的火焰燃得越旺,力量就越大。火焰的溫度有時甚至能超過1400度。",
th: "ยิ่งเปลวไฟในร่างกายลุกโพลง พลังก็จะยิ่งเพิ่มสูงขึ้น อุณหภูมินั้นอาจสูงเกิน 1400 องศา"
},
stage: "Stage1",
attacks: [{
cost: ["Fire", "Colorless", "Colorless"],
name: {
ja: "カンカンパンチ",
'zh-tw': "鏗鏗拳",
th: "หมัดพลุ่งพล่าน"
},
damage: "60+",
effect: {
ja: "このポケモンにダメカンがのっているなら、60ダメージ追加。",
'zh-tw': "若這隻寶可夢身上放置有傷害指示物則增加60點傷害。",
th: "ถ้าโปเกมอนนี้มีตัวนับแดเมจวางอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 60"
}
}, {
cost: ["Fire", "Colorless", "Colorless", "Colorless"],
name: {
ja: "ヒートブラスト",
'zh-tw': "高溫爆破",
th: "ฮีทบลาสต์"
},
damage: 140
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card