1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon cf25058e55
Updated
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-21 23:48:05 +01:00

97 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "sm4-16",
localId: 16,
// Card informations
name: {
en: "Starmie",
fr: "Staross",
},
hp: 90,
type: [
Type.WATER,
],
dexId: 121,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm4/16/low",
fr: "https://assets.tcgdex.net/fr/sm/sm4/16/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm4/16/high",
fr: "https://assets.tcgdex.net/fr/sm/sm4/16/high",
},
},
evolveFrom: {
en: "Staryu",
fr: "Stari",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 45,
name: "Yuka Morii"
},
abilities: [{
id: 688,
type: AbilityType.TALENT,
name: {
en: "Escape",
fr: "Évasion",
},
text: {
en: "Once during your turn (before your attack), you may shuffle this Pokémon and all cards attached to it into your deck.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez mélanger ce Pokémon et toutes les cartes qui lui sont attachées avec votre deck.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Spinning Attack",
fr: "Attaque Tournante",
},
damage: 40
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Crimson Invasion",
code: "sm4"
}
}
export default card