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

64
data-asia/SV/SV2P/063.ts Normal file
View File

@ -0,0 +1,64 @@
import { Card } from "../../../interfaces"
import Set from "../SV2P"
const card: Card = {
set: Set,
name: {
ja: "ココガラ",
'zh-tw': "稚山雀",
th: "โคโคการะ",
id: "Rookidee"
},
illustrator: "Naoki Saito",
rarity: "Common",
category: "Pokemon",
dexId: [821],
hp: 60,
types: ["Colorless"],
description: {
ja: "勇敢で 向こう見ずな 気質。 目の まわりの 白い 模様は 気弱な ポケモンを 怯ませる。",
'zh-tw': "性情勇敢,魯莽衝動。眼睛周圍的白色花紋 會讓懦弱的寶可夢感到畏懼。",
th: "มีนิสัยกล้าหาญบุ่มบ่าม ลายสีขาวรอบดวงตาจะข่มขวัญโปเกมอนที่ใจเสาะ",
id: "Rookidee bersifat pemberani dan nekat. Pola putih di sekitar matanya digunakan untuk menakut-nakuti Pokémon yang penakut."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "つきかえす",
'zh-tw': "送回",
th: "ส่งกลับไป",
id: "Kirim Balik"
},
damage: 10,
effect: {
ja: "相手のバトルポケモンをベンチポケモンと入れ替える。[バトル場に出すポケモンは相手が選ぶ。]",
'zh-tw': "將對手的戰鬥寶可夢與備戰寶可夢互換。[由對手選擇放置於戰鬥場的寶可夢。]",
th: "สลับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามกับโปเกมอนบนเบนช์ {ฝ่ายตรงข้ามเลือกโปเกมอนที่จะวางบนตำแหน่งต่อสู้}",
id: "Tukar Pokémon Bertarung lawan dengan Pokémon Cadangan. [Pokémon yang akan dimasukkan ke Arena Bertarung dipilih oleh lawan.]"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card