1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

63 lines
1.5 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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