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

73
data-asia/SV/SV2a/083.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: "Farfetch'd"
},
illustrator: "KG-2000",
rarity: "Common",
category: "Pokemon",
dexId: [83],
hp: 90,
types: ["Colorless"],
description: {
ja: "植物の 茎で 戦う。 茎の 振り方には いくつかの 流派の ようなものが ある。",
'zh-tw': "用植物的莖來戰鬥。莖的揮舞方式存在著 好幾種不同的流派。",
th: "ใช้ลำต้นของพืชในการต่อสู้ มีสไตล์การฟาดฟันด้วยลำต้นที่เหมือนกับวิชาต่อสู้หลายรูปแบบ",
id: "Farfetch'd bertarung menggunakan batang tumbuhan. Terdapat beberapa aliran terkait cara mengayunkan batang."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "しょってくる",
'zh-tw': "背來",
th: "แบกขึ้นหลัง",
id: "Memanggul"
},
effect: {
ja: "自分の山札を2枚引く。",
'zh-tw': "從自己的牌庫抽出2張卡。",
th: "จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา",
id: "Ambil 2 kartu dari atas Deck sendiri."
}
}, {
cost: ["Colorless"],
name: {
ja: "ネギでぶつ",
'zh-tw': "用蔥毆打",
th: "หวดด้วยต้นหอม",
id: "Daun Bawang Penghajar"
},
damage: 30
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card