mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
59 lines
886 B
TypeScript
59 lines
886 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Battle Styles'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Dottler",
|
||
fr: "Coléodôme"
|
||
},
|
||
|
||
illustrator: "Midori Harada",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Psychic"],
|
||
|
||
evolveFrom: {
|
||
en: "Blipbug",
|
||
fr: "Larvadar"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Radar",
|
||
fr: "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."
|
||
},
|
||
|
||
cost: ["Psychic"]
|
||
}, {
|
||
name: {
|
||
en: "Ram",
|
||
fr: "Collision"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |