1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

113 lines
2.3 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "pl2-RT1",
localId: "RT1",
// Card informations
name: {
en: "Fan Rotom",
fr: "Motisma Hélice Niv. 46",
},
hp: 70,
type: [
Type.LIGHTNING,
],
dexId: 479,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl2/RT1/low",
fr: "https://assets.tcgdex.net/fr/pl/pl2/RT1/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl2/RT1/high",
fr: "https://assets.tcgdex.net/fr/pl/pl2/RT1/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Motofumi Fujiwara",
abilities: [{
id: 499,
type: AbilityType.POKEPOWER,
name: {
en: "Fan Shift",
fr: "Mutation hélice",
},
text: {
en: "Once during your turn (before your attack), you may use this power. Fan Rotom's type is Colorless until the end of your turn.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez utiliser ce pouvoir. Motisma Hélice est de type Colorless jusqu'à la fin de votre tour.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Spin Storm",
fr: "Orage virevoltant",
},
text: {
en: "Flip a coin. If heads, your opponent returns the Defending Pokémon and all cards attached to it to his or her hand.",
fr: "Lancez une pièce. Si c'est face, votre adversaire reprend dans sa main le Pokémon Défenseur ainsi que toutes les cartes qui lui sont attachées.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Air Slash",
fr: "Lame d'Air",
},
text: {
en: "Flip a coin. If tails, discard an Energy attached to Fan Rotom.",
fr: "Lancez une pièce. Si c'est pile, défaussez une Énergie attachée à Motisma Hélice.",
},
damage: 60
}],
weaknesses: [{
type: Type.DARKNESS,
value: "+20"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Rising Rivals",
code: "pl2"
}
}
export default card