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

75
data-asia/SV/SV2a/078.ts Normal file
View File

@ -0,0 +1,75 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "ギャロップ",
'zh-tw': "烈焰馬",
th: "แกลล็อป",
id: "Rapidash"
},
illustrator: "Nurikabe",
rarity: "Uncommon",
category: "Pokemon",
dexId: [78],
hp: 100,
types: ["Fire"],
description: {
ja: "いちばん 脚が 速い ものが リーダー。 群れが 行く 場所や 走る 速度を 決めている。",
'zh-tw': "奔跑速度最快的烈焰馬會成為首領,決定族群 前往的地點和奔跑速度。",
th: "ตัวที่วิ่งเร็วที่สุดจะเป็นจ่าฝูง จ่าฝูงจะเป็นผู้กำหนดจุดหมายรวมถึงความเร็วในการวิ่งของฝูง",
id: "Rapidash yang kakinya paling cepat menjadi pemimpin di kelompoknya. Pemimpin menentukan tempat yang dituju dan kecepatan lari kelompok."
},
stage: "Stage1",
attacks: [{
cost: ["Fire"],
name: {
ja: "こがす",
'zh-tw': "灼熱",
th: "เผา",
id: "Menghanguskan"
},
effect: {
ja: "相手のバトルポケモンをやけどにする。",
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]",
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Luka Bakar."
}
}, {
cost: ["Fire", "Colorless", "Colorless"],
name: {
ja: "マッハターン",
'zh-tw': "音速迴轉",
th: "มัคเทิร์น",
id: "Mach Turn"
},
damage: 90,
effect: {
ja: "このポケモンをベンチポケモンと入れ替える。",
'zh-tw': "將這隻寶可夢與備戰寶可夢互換。",
th: "สลับโปเกมอนนี้กับโปเกมอนบนเบนช์",
id: "Tukar Pokémon ini dengan Pokémon Cadangan."
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card