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

75
data-asia/SV/SV2a/021.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: "Spearow"
},
illustrator: "Gemi",
rarity: "Common",
category: "Pokemon",
dexId: [21],
hp: 50,
types: ["Colorless"],
description: {
ja: "羽が 短く 長い 距離を 飛べない。 せわしなく 動き まわって むしポケモンを ついばむ。",
'zh-tw': "翅膀很短,無法長距離飛行。 總是不停地四處跳來跳去, 忙著啄食蟲寶可夢。",
th: "ด้วยปีกที่สั้นทำให้บินได้ไม่ไกล มักขยับไปมาอย่างลุกลี้ลุกลนจิกกินโปเกมอนแมลง",
id: "Spearow tidak dapat terbang jauh karena sayapnya pendek. Pokémon ini bergerak ke sekeliling dengan tergesa-gesa untuk mencari dan mematuk Pokémon serangga."
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "ぬけがけしんか",
'zh-tw': "搶先進化",
th: "ชิงวิวัฒนาการ",
id: "Evolusi Mencuri Start"
},
effect: {
ja: "このポケモンは、後攻プレイヤーの最初の番なら、出したばかりでも進化できる。",
'zh-tw': "若在後攻玩家的最初回合,則這隻寶可夢就算剛使出也可進化。",
th: "โปเกมอนนี้ ถ้าเป็นเทิร์นแรกสุดของผู้เล่นฝ่ายเล่นทีหลัง แม้จะเพิ่งออกมาก็สามารถวิวัฒนาการได้",
id: "Jika ini adalah giliran pertama Pemain Kedua, Pokémon ini dapat dievolusikan meskipun baru dimasukkan."
}
}],
attacks: [{
cost: ["Colorless"],
name: {
ja: "スピードひこう",
'zh-tw': "高速飛行",
th: "บินเร็วจี๋",
id: "Terbang Cepat"
},
damage: 10
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card