1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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

59
data-asia/SV/SV6/022.ts Normal file
View File

@ -0,0 +1,59 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "オーガポン かまどのめんex",
'zh-tw': "厄鬼椪 火灶面具ex"
},
category: "Pokemon",
rarity: "Double rare",
illustrator: "5ban Graphics",
hp: 210,
types: ["Fire"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Fire", "Colorless", "Colorless"],
name: {
ja: "いかりがま",
'zh-tw': "憤怒之窯"
},
damage: "20×",
effect: {
ja: "このポケモンにのっているダメカンの数×20ダメージ。",
'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。"
}
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "ダイナミックブレイズ",
'zh-tw': "極限火焰"
},
damage: "140+",
effect: {
ja: "相手のバトルポケモンが進化ポケモンなら、140ダメージ追加。その場合、このポケモンについているエネルギーを、すべてトラッシュする。",
'zh-tw': "若對手的戰鬥寶可夢為進化寶可夢則增加140點傷害。這個情況下將這隻寶可夢身上附加的能量卡全部丟棄。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card