1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-20 15:19:55 +00:00

79 lines
1.3 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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Mamoswine",
fr: "Mammochon",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
473,
],
hp: 180,
types: [
"Water",
],
evolveFrom: {
en: "Piloswine",
fr: "Cochignon",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Double Stomp",
fr: "Double Écrasement",
},
effect: {
en: "Flip 2 coins. This attack does 30 more damage for each heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.",
},
damage: 60,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Forceful Tackle",
fr: "Charge Énergique",
},
effect: {
en: "You may put up to 9 damage counters on this Pokémon. This attack does 10 more damage for each damage counter you placed in this way.",
fr: "Vous pouvez placer jusquà 9 marqueurs de dégâts sur ce Pokémon. Cette attaque inflige 10 dégâts supplémentaires pour chaque marqueur de dégâts placé de cette façon.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 4,
}
export default card