1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 10:49:55 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

86 lines
1.4 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",
},
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",
},
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.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Ram",
fr: "Collision",
},
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