1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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

102
cards/pl/pl3/3.ts Normal file
View File

@ -0,0 +1,102 @@
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-3",
localId: 3,
// Card informations
name: {
en: "Drifblim FB",
fr: "Grodrive ",
},
hp: 80,
type: [
Type.PSYCHIC,
],
dexId: 426,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/3/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/3/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/3/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/3/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 104,
name: "Lee HyunJung"
},
abilities: [{
id: 1112,
type: AbilityType.POKEBODY,
name: {
en: "Pump Up",
fr: "Regonfler",
},
text: {
en: "If your opponent has 3 or less Prize cards left, Drifblim FB gets +40 HP.",
fr: "S'il ne reste pas plus de 3 cartes Récompense à votre adversaire, Grodrive obtient 40 PV supplémentaires.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Shadow Ball",
fr: "Ball'ombre",
},
text: {
en: "Choose 1 of your opponent's Benched Pokémon. This attack does 40 damage to that Pokémon. Apply Weakness and Resistance.",
fr: "Choisissez 1 des Pokémon de Banc de votre adversaire. Cette attaque lui inflige 40 dégâts. Appliquez la Faiblesse et la Résistance.",
},
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
retreat: 2,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card