1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12: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

108 lines
1.9 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: "dp4-39",
localId: 39,
// Card informations
name: {
en: "Granbull",
fr: "Granbull",
},
hp: 90,
type: [
Type.COLORLESS,
],
dexId: 210,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp4/39/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp4/39/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp4/39/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp4/39/high.png",
},
},
evolveFrom: {
en: "Snubbull",
fr: "Snubbull",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Daunt",
fr: "Décourager",
},
text: {
en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 20 (before applying Weakness and Resistance).",
fr: "Lors du prochain tour de votre adversaire, tous dégâts infligés au Pokémon Défenseur par des attaques sont réduits de 20 (avant application de la Faiblesse et de la Résistance).",
},
damage: 30
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Rage",
fr: "Frénésie",
},
text: {
en: "Does 40 damage plus 10 more damage for each damage counter on Granbull.",
fr: "Inflige 40 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégât sur Granbull.",
},
damage: 40
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+20"
}],
retreat: 2,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Great Encounters",
code: "dp4"
}
}
export default card