1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 18:09:19 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

112
cards/xy/xy12/31.ts Normal file
View File

@ -0,0 +1,112 @@
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: "xy12-31",
localId: 31,
// Card informations
name: {
en: "Starmie",
fr: "Staross",
},
hp: 90,
type: [
Type.WATER,
],
dexId: 121,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy12/31/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy12/31/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy12/31/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy12/31/high.png",
},
},
evolveFrom: {
en: "Staryu",
fr: "Stari",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 11,
name: "Keiji Kinebuchi"
},
abilities: [{
id: 1353,
type: AbilityType.TALENT,
name: {
en: "Space Beacon",
},
text: {
en: "Once during your turn (before your attack), you may discard a card from your hand. If you do, put 2 basic Energy cards from your discard pile into your hand. (You can't choose a card you discarded with the effect of this Ability.)",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Star Freeze",
fr: "Talent : Lumière Spatiale",
},
text: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez défausser une carte de votre main. Dans ce cas, prenez 2 cartes Énergie de base dans votre pile de défausse et ajoutez-les à votre main. (Vous ne pouvez pas choisir une carte que vous avez défaussée du fait de l'effet de ce talent.)",
},
damage: 30
},{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
fr: "Étoile Gelante",
},
text: {
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
},
damage: 30
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Evolutions",
code: "xy12"
}
}
export default card