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

80 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Mantine",
fr: "Demanta"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
226,
],
hp: 80,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Jumbo Fin",
fr: "Nageoire géante"
},
effect: {
en: "If Mantyke is anywhere under Mantine, the Retreat Cost for each of your Water Pokémon is ColorlessColorless less.",
fr: "Si Babimanta se trouve sous Demanta, le coût de retraite de chacun de vos Pokémon Water est ColorlessColorless de moins."
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
],
name: {
en: "Giant Wave",
fr: "Vague géante"
},
effect: {
en: "Mantine can't use Giant Wave during your next turn.",
fr: "Demanta ne peut pas utiliser Vague géante lors de votre prochain tour."
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "+20"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
description: {
fr: "Lorsque la mer est calme, il arrive de croiser un banc de Démanta nageant comme s'il volaient."
}
}
export default card