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

88 lines
1.7 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Dottler",
fr: "Coléodôme",
es: "Dottler",
it: "Dottler",
pt: "Dottler",
de: "Keradar"
},
illustrator: "Midori Harada",
rarity: "Uncommon",
category: "Pokemon",
hp: 70,
types: ["Psychic"],
evolveFrom: {
en: "Blipbug",
fr: "Larvadar"
},
attacks: [{
name: {
en: "Radar",
fr: "Radar",
es: "Radar",
it: "Radar",
pt: "Radar",
de: "Radar"
},
effect: {
en: "Look at the top 4 cards of your deck and put them back in any order.",
fr: "Regardez les 4 cartes du dessus de votre deck, puis replacez-les dans lordre de votre choix.",
es: "Mira las 4 primeras cartas de tu baraja y vuelve a ponerlas en la parte superior de tu baraja en el orden que quieras.",
it: "Guarda le prime quattro carte del tuo mazzo e rimettile a posto nellordine che preferisci.",
pt: "Olhe as 4 cartas de cima do seu baralho e coloque-as de volta em qualquer ordem.",
de: "Schau dir die obersten 4 Karten deines Decks an und lege sie in beliebiger Reihenfolge zurück auf dein Deck."
},
cost: ["Psychic"]
}, {
name: {
en: "Ram",
fr: "Collision",
es: "Apisonar",
it: "Carica",
pt: "Aríete",
de: "Ramme"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Stage1",
description: {
en: "As it grows inside its shell, it uses its psychic abilities to monitor the outside world and prepare for evolution."
}
}
export default card