1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

86 lines
1.6 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Alolan Rattata",
fr: "Rattata dAlola",
es: "Rattata de Alola",
it: "Rattata di Alola",
pt: "Rattata de Alola",
de: "Alola-Rattfratz"
},
illustrator: "nagimiso",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
19,
],
hp: 40,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
name: {
en: "Focus Energy",
fr: "Puissance",
es: "Foco Energía",
it: "Focalenergia",
pt: "Focalizar Energia",
de: "Energiefokus"
},
effect: {
en: "During your next turn, this Pokémons Bite attacks base damage is 60.",
fr: "Pendant votre prochain tour, les dégâts de base de lattaque Morsure de ce Pokémon sont de 60.",
es: "Durante tu próximo turno, el daño básico del ataque Mordisco de este Pokémon es de 60.",
it: "Durante il tuo prossimo turno, i danni base dellattacco Morso di questo Pokémon sono 60.",
pt: "Durante a sua próxima vez de jogar, o dano base do ataque Mordida deste Pokémon será 60.",
de: "Während deines nächsten Zuges beträgt der Grundschaden der Attacke Biss dieses Pokémon 60 Schadenspunkte."
},
},
{
cost: [
"Darkness",
],
name: {
en: "Bite",
fr: "Morsure",
es: "Mordisco",
it: "Morso",
pt: "Mordida",
de: "Biss"
},
damage: 10,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card