mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
54 lines
894 B
TypeScript
54 lines
894 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Neo Genesis'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Magby",
|
|
fr: "Magby",
|
|
de: "Magby"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Rare",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
240,
|
|
],
|
|
|
|
hp: 30,
|
|
|
|
types: [
|
|
"Fire",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Sputter",
|
|
fr: "Crachouilles",
|
|
de: "Stottern"
|
|
},
|
|
effect: {
|
|
en: "All Pokémon Powers stop working until the end of your next turn.",
|
|
fr: "Tous les Pouvoirs Pokémon cessent de fonctionner jusqu'à la fin de votre prochain tour.",
|
|
de: "Alle Pokémon-Power funktionieren bis zum Ende deines nächsten Zuges nicht mehr."
|
|
},
|
|
damage: 10,
|
|
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "Chaque fois qu'il respire, des braises ardentes tombent de sa bouche et de ses narines."
|
|
}
|
|
}
|
|
|
|
export default card
|