1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 01:07:53 +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

92 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Triumphant'
const card: Card = {
name: {
en: "Mamoswine",
fr: "Mammochon",
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
473,
],
hp: 140,
types: [
"Water",
],
evolveFrom: {
en: "Piloswine",
fr: "Cochignon",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Icy Wind",
fr: "Vent glacé",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
damage: 40,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Snowstorm",
fr: "Tempête de neige",
},
effect: {
en: "Does 20 damage to each of your opponents Benched Pokémon that has any damage counters on it. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 20 dégâts à chacun des Pokémon se trouvant sur le Banc de votre adversaire et ayant des marqueurs de dégât. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
},
damage: 70,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 4,
description: {
en: "A frozen Mamoswine was dug from ice dating back 10,000 years. This Pokémon has been around a long, long, long time."
},
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card