mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-18 22:39:54 +00:00
* 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>
78 lines
1.5 KiB
TypeScript
78 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Diamond & Pearl'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Mantyke",
|
||
fr: "Babimanta",
|
||
},
|
||
|
||
illustrator: "Midori Harada",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
dexId: [
|
||
458,
|
||
],
|
||
|
||
hp: 40,
|
||
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
abilities: [
|
||
{
|
||
type: "Poke-POWER",
|
||
name: {
|
||
en: "Baby Evolution",
|
||
fr: "Évolution bébé",
|
||
},
|
||
effect: {
|
||
en: "Once during your turn (before your attack), you may put Mantine from your hand onto Mantyke (this counts as evolving Mantyke) and remove all damage counters from Mantyke.",
|
||
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez placer Demanta de votre main sur Babimanta (vous le faites ainsi évoluer) et retirer à Babimanta tous ses marqueurs de dégât.",
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
|
||
name: {
|
||
en: "Call for Friends",
|
||
fr: "À la rescousse!",
|
||
},
|
||
effect: {
|
||
en: "Search your deck for a grass Basic Pokémon, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
|
||
fr: "Cherchez dans votre deck un Pokémon de Base Water, montrez-le à votre adversaire et placez-le dans votre main. Ensuite, mélangez votre deck.",
|
||
},
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "+10"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-20"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
fr: "Un Pokémon amical qui analyse les mouvements subtils de l'eau de mer grâce à ses deux antennes."
|
||
}
|
||
}
|
||
|
||
export default card
|