1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

72 lines
1.5 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Durant",
fr: "Fermite",
es: "Durant",
it: "Durant",
pt: "Durant",
de: "Fermicula"
},
illustrator: "kodama",
rarity: "Uncommon",
category: "Pokemon",
hp: 90,
types: ["Grass"],
attacks: [{
name: {
en: "Vise Grip",
fr: "Force Poigne",
es: "Agarre",
it: "Presa",
pt: "Agarramento Compressor",
de: "Klammer"
},
damage: 20,
cost: ["Grass"]
}, {
name: {
en: "Devour",
fr: "Voracité",
es: "Devorar",
it: "Divoratore",
pt: "Devorar",
de: "Verschlinger"
},
effect: {
en: "For each of your Durant in play, discard the top card of your opponents deck.",
fr: "Pour chacun de vos Fermite en jeu, défaussez la carte du dessus du deck de votre adversaire.",
es: "Por cada uno de tus Durant en juego, descarta la primera carta de la baraja de tu rival.",
it: "Per ogni tuo Durant in gioco, scarta la prima carta del mazzo del tuo avversario.",
pt: "Para cada um dos seus Durant em jogo, descarte a carta de cima do baralho do seu oponente.",
de: "Lege für jedes deiner Fermicula im Spiel die oberste Karte vom Deck deines Gegners auf seinen Ablagestapel."
},
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card