1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 10:17:50 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

95 lines
2.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 = {
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 youre scattering food for them, be careful—several hundred of them can gather at once."
}
}
export default card