1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-01 12:22:02 +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

69
data-asia/SV/SV2a/038.ts Normal file
View File

@@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "キュウコンex",
'zh-tw': "九尾ex",
th: "คิวคอนex",
id: "Ninetales ex"
},
illustrator: "kawayoo",
rarity: "Double rare",
category: "Pokemon",
hp: 260,
types: ["Fire"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Fire"],
name: {
ja: "ねっぷう",
'zh-tw': "熱風",
th: "คลื่นความร้อน",
id: "Angin Panas"
},
damage: 30,
effect: {
ja: "相手のバトルポケモンをやけどにする。",
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar."
}
}, {
cost: ["Fire", "Colorless"],
name: {
ja: "うつしほむら",
'zh-tw': "現形熾火",
th: "เปลวไฟสะท้อน",
id: "Kobaran Api Refleksi"
},
damage: "80+",
effect: {
ja: "自分の手札と相手の手札が同じ枚数なら、140ダメージ追加。",
'zh-tw': "若自己的手牌與對手的手牌張數相同則增加140點傷害。",
th: "ถ้าจำนวนการ์ดบนมือฝ่ายเราเท่ากับจำนวนการ์ดบนมือฝ่ายตรงข้าม การโจมตีนี้จะเพิ่มแดเมจอีก 140",
id: "Jika jumlah Kartu Pegangan sendiri dan jumlah Kartu Pegangan lawan sama, kerusakan yang diberikan bertambah sejumlah 140."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card