1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

103 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: "dp6-71",
localId: 71,
// Card informations
name: {
en: "Starmie",
fr: "Staross",
},
hp: 80,
type: [
Type.WATER,
],
dexId: 121,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp6/71/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/71/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp6/71/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/71/high.png",
},
},
evolveFrom: {
en: "Staryu",
fr: "Sterndu",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Star Boomerang",
fr: "Star-boomerang",
},
text: {
en: "You may return Starmie and all cards attached to it to your hand.",
fr: "Vous pouvez reprendre dans votre main Staross ainsi que toutes les cartes qui lui sont attachées.",
},
damage: 30
},{
cost: [
Type.PSYCHIC
],
name: {
en: "Core Flash",
fr: "Flash=coeur",
},
text: {
en: "Choose 1 of your opponent's Pokémon that has any Poké-Powers or Poké-Bodies. This attack does 50 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez 1 des Pokémon de votre adversaire possédant des Poké-Powers ou des Poké-Bodies. Cette attaque lui inflige 50 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+20"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Legends Awakened",
code: "dp6"
}
}
export default card