1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

101 lines
1.7 KiB
TypeScript

import Card from '../../../interfaces/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "dp5-13",
localId: 13,
// Card informations
name: {
en: "Rotom",
fr: "Motisma",
},
hp: 60,
type: [
Type.LIGHTNING,
],
dexId: 479,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp5/13/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp5/13/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp5/13/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp5/13/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
name: {
en: "Dual Trans",
fr: "Double trans",
},
text: {
en: "Search your discard pile for up to 2 basic Energy cards and attach them to 1 of your Pokémon.",
fr: "Choisissez dans votre pile de défausse jusqu'à 2 cartes Énergie et attachez-les à 1 de vos Pokémon.",
},
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Reflect Energy",
fr: "Renvoi d'énergie",
},
text: {
en: "Move an Energy card attached to Rotom to 1 of your Benched Pokémon.",
fr: "Déplacez une carte Énergie attachée à Motisma sur 1 des Pokémon de votre Banc.",
},
damage: 30
}],
weaknesses: [{
type: Type.DARKNESS,
value: "+20"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Majestic Dawn",
code: "dp5"
}
}
export default card