mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
96 lines
2.2 KiB
TypeScript
96 lines
2.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Durant",
|
||
fr: "Fermite",
|
||
es: "Durant",
|
||
it: "Durant",
|
||
pt: "Durant",
|
||
de: "Fermicula"
|
||
},
|
||
|
||
illustrator: "Hideki Ishikawa",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Gathering Food",
|
||
fr: "Amas de Denrées",
|
||
es: "Acopio de Alimentos",
|
||
it: "Radunacibo",
|
||
pt: "Coletar Comida",
|
||
de: "Futtersuche"
|
||
},
|
||
effect: {
|
||
en: "For each Energy attached to this Pokémon, search your deck for a Trainer card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||
fr: "Pour chaque Énergie attachée à ce Pokémon, cherchez dans votre deck une carte Dresseur, montrez-la, puis ajoutez-la à votre main. Mélangez ensuite votre deck.",
|
||
es: "Por cada Energía unida a este Pokémon, busca en tu baraja 1 carta de Entrenador, enséñala y ponla en tu mano. Después, baraja las cartas de tu baraja.",
|
||
it: "Per ogni Energia assegnata a questo Pokémon, cerca nel tuo mazzo una carta Allenatore, mostrala e aggiungila alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
|
||
pt: "Para cada Energia ligada a este Pokémon, procure por 1 carta de Treinador no seu baralho, revele-a e coloque-a na sua mão. Em seguida, embaralhe o seu baralho.",
|
||
de: "Durchsuche für jede an dieses Pokémon angelegte Energie dein Deck nach 1 Trainerkarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Metal",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Metal Claw",
|
||
fr: "Griffe Acier",
|
||
es: "Garra Metal",
|
||
it: "Ferrartigli",
|
||
pt: "Garra de Metal",
|
||
de: "Metallklaue"
|
||
},
|
||
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fire",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Grass",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
hp: 100,
|
||
types: ["Metal"],
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
description: {
|
||
en: "They lay their eggs deep inside their nests. When attacked by Heatmor, they retaliate using their massive mandibles."
|
||
}
|
||
}
|
||
|
||
export default card
|