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

49 lines
689 B
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: "ウェルカモ"
},
illustrator: "Souichirou Gunjima",
category: "Pokemon",
dexId: [913],
hp: 90,
types: ["Water"],
description: {
ja: "ひたすらに 浅瀬を 走り込んで 足腰を 鍛え 仲間同士で 足技の 華麗さを 競いあう。"
},
stage: "Stage1",
attacks: [{
cost: ["Water"],
name: {
ja: "みずでっぽう"
},
damage: 30
}, {
cost: ["Water", "Colorless"],
name: {
ja: "スプラッシュ"
},
damage: 50
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 1
}
export default card