1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 23:22:11 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

111 lines
2.0 KiB
TypeScript

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "pl3-24",
localId: 24,
// Card informations
name: {
en: "Dewgong",
fr: "Lamantine",
},
hp: 100,
type: [
Type.WATER,
],
dexId: 87,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/24/low",
fr: "https://assets.tcgdex.net/fr/pl/pl3/24/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/24/high",
fr: "https://assets.tcgdex.net/fr/pl/pl3/24/high",
},
},
evolveFrom: {
en: "Seel",
fr: "Otaria",
},
tags: [
Tag.STAGE1,
],
illustrator: "Kanako Eo",
abilities: [{
id: 70,
type: AbilityType.POKEBODY,
name: {
en: "Thick Fat",
fr: "Isograisse",
},
text: {
en: "Any damage done to Dewgong by attacks from Fire Pokémon and Water Pokémon is reduced by 30 (after applying Weakness and Resistance).",
fr: "Tous les dégâts infligés à Lamantine par des attaques de Pokémon Fire et Water sont réduits de 30 (après application de la Faiblesse et de la Résistance).",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Ice Shard",
fr: "Éclats glace",
},
text: {
en: "If the Defending Pokémon is a Fighting Pokémon, this attack's base damage is 80 instead of 30.",
fr: "Si le Pokémon Défenseur est un Pokémon Fighting, les dégâts de base de cette attaque sont de 80 au lieu de 30.",
},
damage: 30
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Aurora Beam",
fr: "Onde boréale",
},
damage: 70
}],
weaknesses: [{
type: Type.METAL,
value: "+20"
}],
retreat: 3,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card