1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

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

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

85 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Swinub",
fr: "Marcacrin"
},
illustrator: "Yukiko Baba",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
220,
],
hp: 50,
types: [
"Fighting",
],
evolveFrom: {
fr: "Marcacrin",
},
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Freezing Breath",
fr: "Souffle glacial",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed. If tails, the Defending Pokémon is now Asleep.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé. Si c'est pile, le Pokémon Défenseur est maintenant Endormi.",
},
},
{
cost: [
"Fighting",
],
name: {
en: "Take Down",
fr: "Bélier",
},
effect: {
en: "Flip a coin. If tails, Swinub does 10 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, Marcacrin s'inflige 10 dégâts.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "+10"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 1,
description: {
fr: "Il adore les champignons qui poussent sous l'herbe morte. Il trouve aussi des sources chaudes."
}
}
export default card