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

68
data-asia/SV/SV1a/024.ts Normal file
View File

@@ -0,0 +1,68 @@
import { Card } from "../../../interfaces"
import Set from "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "デリバード",
'zh-tw': "信使鳥",
th: "เดลิเบิร์ด",
id: "Delibird"
},
illustrator: "miki kudo",
rarity: "Common",
category: "Pokemon",
dexId: [225],
hp: 90,
types: ["Water"],
description: {
ja: "1日 ずっと エサを運んでる。 遭難した 人が デリバードの エサで 助かった 話もある。",
'zh-tw': "一整天都在搬運食物。據說曾經有遇難的人因為 信使鳥的食物而得救。",
th: "ลำเลียงอาหารตลอดทั้งวัน ว่ากันว่ามีผู้ประสบภัยที่รอดตายเพราะได้อาหารจากเดลิเบิร์ดด้วย",
id: "Delibird terus mengangkut makanan sehari penuh. Ada kisah mengenai orang yang terdampar terselamatkan berkat makanan yang dibawa olehnya."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ダブルドロー",
'zh-tw': "雙重抽出",
th: "ดับเบิลดรอว์",
id: "Double Draw"
},
effect: {
ja: "自分の山札を2枚引く。",
'zh-tw': "從自己的牌庫抽出2張卡。",
th: "จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา",
id: "Ambil 2 kartu dari atas Deck sendiri."
}
}, {
cost: ["Water", "Colorless"],
name: {
ja: "アイスウイング",
'zh-tw': "冰之翼",
th: "ไอซ์วิง",
id: "Ice Wing"
},
damage: 30
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card