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

104 lines
2.0 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: "pl3-82",
localId: 82,
// Card informations
name: {
en: "Rotom",
fr: "Motisma",
},
hp: 70,
type: [
Type.LIGHTNING,
],
dexId: 479,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/82/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/82/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/82/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/82/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 5,
name: "Ken Sugimori"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Discharge",
fr: "Coup d'Jus",
},
text: {
en: "Discard all Lightning Energy attached to Rotom. Flip a coin for each Energy card you discarded. This attack does 40 damage times the number of heads.",
fr: "Défaussez toutes les Énergies Lightning attachées à Motisma. Lancez une pièce pour chaque carte Énergie défaussée. Cette attaque inflige 40 dégâts multipliés par le nombre de faces.",
},
damage: 40
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Uproar",
fr: "Brouhaha",
},
text: {
en: "This attack does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
}],
weaknesses: [{
type: Type.DARKNESS,
value: "+20"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card