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

73
data-asia/SV/SV2a/022.ts Normal file
View File

@@ -0,0 +1,73 @@
import { Card } from "../../../interfaces"
import Set from "../SV2a"
const card: Card = {
set: Set,
name: {
ja: "オニドリル",
'zh-tw': "大嘴雀",
th: "โอนิดริล",
id: "Fearow"
},
illustrator: "Gemi",
rarity: "Uncommon",
category: "Pokemon",
dexId: [22],
hp: 90,
types: ["Colorless"],
description: {
ja: "オニドリルの 縄張りで 食べ物を 持って 歩くのは 危険だ。 あっという 間に かっさらわれるぞ。",
'zh-tw': "在大嘴雀的地盤上帶著食物走動是件危險的事, 食物轉眼間就會被奪走。",
th: "การถือของกินเดินเข้าไปในอาณาเขตของโอนิดริลเป็นเรื่องที่อันตรายอย่างยิ่ง เพราะจะถูกฉกแย่งหายไปโดยที่ไม่ทันได้ตั้งตัว",
id: "Berbahaya jika berjalan sambil membawa makanan di daerah kekuasaan Fearow. Pokémon ini akan menyambarnya dalam sekejap."
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "くちばしキャッチ",
'zh-tw': "鳥嘴捕捉",
th: "จะงอยจับ",
id: "Paruh Penangkap"
},
effect: {
ja: "自分の山札から好きなカードを3枚まで選び、手札に加える。そして山札を切る。",
'zh-tw': "從自己的牌庫任意選擇最多3張卡加入手牌。並且重洗牌庫。",
th: "เลือกการ์ดที่ชอบได้สูงสุด 3 ใบจากสำรับการ์ดฝ่ายเรา นำขึ้นมือ แล้วสับสำรับการ์ด",
id: "Pilih paling banyak 3 kartu sesukanya dari Deck sendiri, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
}
}, {
cost: ["Colorless"],
name: {
ja: "スピードひこう",
'zh-tw': "高速飛行",
th: "บินเร็วจี๋",
id: "Terbang Cepat"
},
damage: 50
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "G"
}
export default card