1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

93 lines
1.8 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 '../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",
es: "Blipbug",
it: "Blipbug",
pt: "Blipbug",
de: "Sensect"
},
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 l'ordre 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 nell'ordine 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