mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
106 lines
1.7 KiB
TypeScript
106 lines
1.7 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: "hgss1-52",
|
||
localId: 52,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Slowbro",
|
||
fr: "Flagadoss",
|
||
},
|
||
|
||
hp: 90,
|
||
|
||
type: [
|
||
Type.WATER,
|
||
],
|
||
|
||
dexId: 80,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss1/52/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss1/52/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss1/52/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss1/52/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Slowpoke",
|
||
fr: "Ramoloss",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE1,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 7,
|
||
name: "Sumiyoshi Kizuki"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.WATER
|
||
],
|
||
name: {
|
||
en: "Big Yawn",
|
||
fr: "Gros bâillement",
|
||
},
|
||
text: {
|
||
en: "Both Slowbro and the Defending Pokémon are now Asleep.",
|
||
fr: "Flagadoss et le Pokémon Défenseur sont maintenant Endormis.",
|
||
},
|
||
damage: 30
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Madkinesis",
|
||
fr: "Mentalisme",
|
||
},
|
||
text: {
|
||
en: "Does 30 damage plus 20 more damage for each Psychic Energy attached to Slowbro.",
|
||
fr: "Inflige 30 dégâts plus 20 dégâts supplémentaires pour chaque carte Énergie Psychic attachée à Flagadoss.",
|
||
},
|
||
damage: 30
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.LIGHTNING,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 2,
|
||
|
||
rarity: Rarity.Uncommon,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "HeartGold & SoulSilver",
|
||
code: "hgss1"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|