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

63
data-asia/SV/SV1a/029.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "ウェルカモ",
'zh-tw': "湧躍鴨",
th: "เวลคาโมะ",
id: "Quaxwell"
},
illustrator: "Souichirou Gunjima",
rarity: "Common",
category: "Pokemon",
dexId: [913],
hp: 90,
types: ["Water"],
description: {
ja: "ひたすらに 浅瀬を 走り込んで 足腰を 鍛え 仲間同士で 足技の 華麗さを 競いあう。",
'zh-tw': "會在淺灘不斷跑步來鍛鍊下盤的筋骨,好跟夥伴們 競爭誰的腿技最為華麗。",
th: "ขยันวิ่งไปมาบริเวณน้ำตื้นเพื่อให้ขาและสะโพกแข็งแรง แข่งความงดงามของเทคนิคการใช้ขากับพวกพ้อง",
id: "Quaxwell melatih kaki dan pinggangnya dengan terus berlari di perairan dangkal. Pokémon ini saling mengadu keindahan teknik serangan kaki dengan sesamanya."
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "みずでっぽう",
'zh-tw': "水槍",
th: "ปืนฉีดน้ำ",
id: "Pistol Air"
},
damage: 30
}, {
cost: ["Water", "Colorless"],
name: {
ja: "スプラッシュ",
'zh-tw': "飛濺",
th: "สแปลช",
id: "Splash"
},
damage: 50
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card