1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

76 lines
1.2 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 '../Deoxys'
const card: Card = {
name: {
en: "Magikarp",
fr: "Magicarpe",
de: "Karpador"
},
illustrator: "Hisao Nakamura",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
129,
],
hp: 30,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Leap Out",
fr: "Bondir",
de: "Leap Out"
},
effect: {
en: "Switch Magikarp with 1 of your Benched Pokémon.",
fr: "Échangez Magicarpe avec 1 des Pokémon de votre Banc.",
de: "Switch Magikarp with 1 of your Benched Pokémon."
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Rage",
fr: "Frénésie",
de: "Rage"
},
effect: {
en: "Does 10 damage plus 10 more damage for each damage counter on Magikarp.",
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur Magicarpe.",
de: "Does 10 damage plus 10 more damage for each damage counter on Magikarp."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card