1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

90 lines
1.7 KiB
TypeScript
Raw 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Mareep",
fr: "Wattouat",
de: "Voltilamm"
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
179,
],
hp: 40,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Static Electricity",
fr: "Électricité statique",
de: "Statische Elektrizität"
},
effect: {
en: "Search your deck for a number of Lightning Energy cards up to the number of Mareep in play (both yours and your opponents) and attach them to Mareep. Shuffle your deck afterward.",
fr: "Cherchez dans votre deck un nombre de cartes Énergie Lightning allant jusquau nombre de Wattouat en jeu (les vôtres et ceux de votre adversaire) et attachez-les à Wattouat. Mélangez ensuite votre deck.",
de: "Durchsuche dein Deck nach einer Anzahl Elektro-Energiekarten, die höchstens der Anzahl an Voltilamm-Karten im Spiel (deinen und denen deines Gegners) entspricht und lege sie an Voltilamm an. Mische anschließend dein Deck."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Ram",
fr: "Collision",
de: "Ramme"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
description: {
en: "If static electricity builds in its body, its fleece doubles in volume. Touching it will shock you."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card