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

97 lines
1.8 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-72",
localId: 72,
// Card informations
name: {
en: "Murkrow",
fr: "Cornèbre",
},
hp: 70,
type: [
Type.DARKNESS,
],
dexId: 198,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/72/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/72/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/72/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/72/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 22,
name: "Yukiko Baba"
},
attacks: [{
name: {
en: "Switcheroo",
fr: "Passe-Passe",
},
text: {
en: "Move a Pokémon Tool card attached to 1 of your opponent's Pokémon to another of your opponent's Pokémon (excluding Pokémon that already has a Pokémon Tool attached to it). (If an effect of this attack is prevented, this attack does nothing.)",
fr: "Déplacez une carte Outil Pokémon attachée à 1 des Pokémon de votre adversaire sur un autre Pokémon de votre adversaire (Pokémon possédant déjà une carte Outil Pokémon exclus). (Si un effet de cette attaque est empêché, cette attaque est sans effet.)",
},
},{
cost: [
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Flap",
fr: "Battement",
},
damage: 20
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+10"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card