1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-03 08:02:10 +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

74 lines
1.1 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 '../Mysterious Treasures'
const card: Card = {
name: {
en: "Magikarp",
fr: "Magicarpe"
},
illustrator: "Yusuke Ohmura",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
129,
],
hp: 30,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Flail",
fr: "Fléau"
},
effect: {
en: "Does 10 damage times the number of damage counters on Magikarp.",
fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégât sur Magicarpe."
},
damage: "10×",
},
{
cost: [
"Water",
"Water",
],
name: {
en: "Dragon Rage",
fr: "Draco-rage"
},
effect: {
en: "Flip 2 coins. If either of them is tails, this attack does nothing.",
fr: "Lancez 2 pièces. Si vous obtenez une pile, cette attaque est sans effet."
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
description: {
fr: "Ce Pokémon est réputé pour être le plus faible au monde. Nul ne sait comment son espèce perdure."
}
}
export default card