1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

86 lines
1.6 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 '../Dark Explorers'
const card: Card = {
name: {
en: "Archeops",
fr: "Aéroptéryx",
es: "Archeops",
it: "Archeops",
pt: "Archeops",
de: "Aeropteryx"
},
illustrator: "5ban Graphics",
rarity: "Secret Rare",
category: "Pokemon",
set: Set,
dexId: [
567,
],
hp: 130,
types: [
"Fighting",
],
evolveFrom: {
en: "Archen",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Ancient Power",
fr: "Pouv.Antique",
es: "Poder Pasado",
it: "Forzantica",
pt: "Poder Ancestral",
de: "Antik-Kraft"
},
effect: {
en: "Each player cant play any Pokémon from his or her hand to evolve his or her Pokémon.",
fr: "Aucun joueur ne peut jouer de Pokémon de sa main pour faire évoluer ses Pokémon.",
es: "Los jugadores no pueden jugar ningún Pokémon de su mano para evolucionar a sus Pokémon.",
it: "Nessun giocatore può giocare dei Pokémon dalla propria mano per far evolvere altri Pokémon.",
pt: "Nenhum jogador pode jogar nenhum Pokémon de sua própria mão para evoluir o Pokémon desse jogador.",
de: "Kein Spieler darf Pokémon von seiner Hand spielen, um die eigenen Pokémon zu entwickeln."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Rock Slide",
},
effect: {
en: "Does 10 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2
}
export default card