1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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

97
cards/sm/sm1/101.ts Normal file
View File

@ -0,0 +1,97 @@
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: "sm1-101",
localId: 101,
// Card informations
name: {
en: "Eevee",
fr: "Évoli",
},
hp: 60,
type: [
Type.COLORLESS,
],
dexId: 133,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm1/101/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm1/101/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm1/101/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm1/101/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 132,
name: "Shibuzoh."
},
abilities: [{
id: 186,
type: AbilityType.TALENT,
name: {
en: "Energy Evolution",
fr: "Évolution de l'Énergie",
},
text: {
en: "When you attach a basic Energy card from your hand to this Pokémon during your turn, you may search your deck for a card that evolves from this Pokémon that is the same type as that Energy card and put it onto this Pokémon to evolve it. Then, shuffle your deck.",
fr: "Lorsque vous attachez pendant votre tour une carte Énergie de base de votre main à ce Pokémon, vous pouvez chercher dans votre deck une carte qui est lévolution de ce Pokémon et du même type que cette carte Énergie. Mettez-la sur ce Pokémon pour le faire évoluer. Mélangez ensuite votre deck.",
}
}],
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Quick Draw",
fr: "Pioche Rapide",
},
text: {
en: "Flip a coin. If heads, draw a card.",
fr: "Lancez une pièce. Si c'est face, piochez une carte.",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Sun & Moon",
code: "sm1"
}
}
export default card