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

101
cards/sm/sm5/95.ts Normal file
View File

@ -0,0 +1,101 @@
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: "sm5-95",
localId: 95,
// Card informations
name: {
en: "Alolan Exeggutor",
fr: "Noadkoko dAlola",
},
hp: 130,
type: [
Type.DRAGON,
],
dexId: 103,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm5/95/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm5/95/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm5/95/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm5/95/high.png",
},
},
evolveFrom: {
en: "Exeggcute",
fr: "Noeunoeuf",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 80,
name: "Hasuno"
},
attacks: [{
name: {
en: "Exeggutor's Paradise",
fr: "Paradis Noadkoko",
},
text: {
en: "For each of your Benched Exeggcute, search your deck for an Alolan Exeggutor or Alolan Exeggutor-GX and put it onto that Exeggcute to evolve it. Then, shuffle your deck.",
fr: "Pour chacun des Noeunoeuf sur votre Banc, cherchez dans votre deck un Noadkoko dAlola ou un Noadkoko dAlola-GX et placez-le sur ce Noeunoeuf pour le faire évoluer. Mélangez ensuite votre deck.",
},
},{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Draco Meteor Barrage",
fr: "Barrage de Draco Météore",
},
text: {
en: "Flip a coin for each Grass Energy attached to this Pokémon. This attack does 80 damage for each heads.",
fr: "Lancez une pièce pour chaque Énergie Grass attachée à ce Pokémon. Cette attaque inflige 80 dégâts multipliés par le nombre de côtés face.",
},
damage: 80
}],
weaknesses: [{
type: Type.FAIRY,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Ultra Prism",
code: "sm5"
}
}
export default card