1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-19 02:39:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

96
cards/pl/pl3/72.ts Normal file
View File

@ -0,0 +1,96 @@
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