1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

90 lines
2.2 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 '../Team Up'
const card: Card = {
name: {
en: "Pidgeotto",
fr: "Roucoups",
es: "Pidgeotto",
it: "Pidgeotto",
pt: "Pidgeotto",
de: "Tauboga"
},
illustrator: "Mizue",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
17,
],
hp: 60,
types: [
"Colorless",
],
evolveFrom: {
en: "Pidgey",
fr: "Roucool",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Air Mail",
fr: "Courrier Aérien",
es: "Correo Aéreo",
it: "Posta Aerea",
pt: "Correio Aéreo",
de: "Luftpost"
},
effect: {
en: "Once during your turn (before your attack), you may look at the top 2 cards of your deck and put 1 of them into your hand. Put the other card on the bottom of your deck.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez regarder les 2 cartes du dessus de votre deck, puis ajouter lune dentre elles à votre main. Placez lautre carte en dessous de votre deck.",
es: "Una vez durante tu turno (antes de tu ataque), puedes mirar las 2 primeras cartas de tu baraja y poner 1 de ellas en tu mano. Pon la otra carta en la parte inferior de tu baraja.",
it: "Una sola volta durante il tuo turno, prima di attaccare, puoi guardare le prime due carte del tuo mazzo e aggiungerne una alle carte che hai in mano. Metti laltra carta in fondo al tuo mazzo.",
pt: "Uma vez durante a sua vez de jogar (antes de atacar), você pode olhar as 2 primeiras cartas do seu baralho e colocar 1 delas na sua mão. Coloque a outra carta como a última carta do seu baralho.",
de: "Einmal während deines Zuges (bevor du angreifst) kannst du dir die obersten 2 Karten deines Decks anschauen und 1 von ihnen auf deine Hand nehmen. Lege die andere Karte unter dein Deck."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Gust",
fr: "Tornade",
es: "Tornado",
it: "Raffica",
pt: "Lufada de Vento",
de: "Windstoß"
},
damage: 30,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
retreat: 1,
}
export default card