1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42: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

96 lines
1.4 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-151",
localId: 151,
// Card informations
name: {
fr: "Milobellus",
},
hp: 80,
type: [
Type.WATER,
],
image: {
low: {
fr: "https://assets.tcgdex.net/fr/pl/pl3/151/low.png",
},
high: {
fr: "https://assets.tcgdex.net/fr/pl/pl3/151/high.png",
},
},
evolveFrom: {
fr: "Barpau",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 30,
name: "Hajime Kusajima"
},
abilities: [{
id: -1,
type: AbilityType.POKEBODY,
name: {
fr: "Aqua-mirage",
},
text: {
fr: "Si vous n'avez plus de cartes en main, prévenez tous les dégâts infligés à Milobellus par des attaques de Pokémon de votre adversaire.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS
],
name: {
fr: "Vague diminutrice",
},
text: {
fr: "Inflige 80 dégâts moins 10 dégâts pour chaque marqueur de dégât sur Milobellus.",
},
damage: "80-"
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+20"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Vainqueurs Suprêmes",
code: "pl3"
}
}
export default card