1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

96 lines
2.2 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 '../Rebel Clash'
const card: Card = {
dexId: [519],
name: {
en: "Pidove",
fr: "Poichigeon",
es: "Pidove",
it: "Pidove",
pt: "Pidove",
de: "Dusselgurr"
},
illustrator: "Ryota Murayama",
rarity: "Common",
category: "Pokemon",
set: Set,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Chirp",
fr: "Gazouillis",
es: "Gorjeo",
it: "Cinguettio",
pt: "Gorjeio",
de: "Zwitscherer"
},
effect: {
en: "Search your deck for up to 2 Pokémon with Fighting Resistance, reveal them, and put them into your hand. Then, shuffle your deck.",
fr: "Cherchez dans votre deck jusqu'à 2 Pokémon avec une Résistance Fighting, montrez-les, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
es: "Busca en tu baraja hasta 2 Pokémon con Resistencia a Fighting, enséñalos y ponlos en tu mano. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a due Pokémon con resistenza al tipo Fighting, mostrali e aggiungili alle carte che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 2 Pokémon com Resistência Fighting no seu baralho, revele-os e coloque-os na sua mão. Em seguida, embaralhe o seu baralho.",
de: "Durchsuche dein Deck nach bis zu 2 Pokémon mit Fighting-Resistenz, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische anschließend dein Deck."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Razor Wing",
fr: "Aile Tranchante",
es: "Ala Cortante",
it: "Ala Tagliente",
pt: "Asa Cortante",
de: "Rasierflügel"
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 1,
hp: 60,
types: ["Colorless"],
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "Where people go, these Pokémon follow. If you're scattering food for them, be careful—several hundred of them can gather at once."
}
}
export default card