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

100 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "sm9-115",
localId: 115,
// Card informations
name: {
en: "Alolan Exeggutor",
fr: "Noadkoko dAlola",
},
hp: 160,
type: [
Type.DRAGON,
],
dexId: 103,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm9/115/low",
fr: "https://assets.tcgdex.net/fr/sm/sm9/115/low",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm9/115/high",
fr: "https://assets.tcgdex.net/fr/sm/sm9/115/high",
},
},
evolveFrom: {
en: "Exeggcute",
fr: "Noeunoeuf",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 39,
name: "Sanosuke Sakuma"
},
attacks: [{
name: {
en: "Paradise Draw",
fr: "Pioche Paradisiaque",
},
text: {
en: "You may discard any number of cards from your hand. Then, draw cards until you have 6 cards in your hand.",
fr: "Vous pouvez défausser autant de cartes que vous voulez de votre main. Ensuite, piochez des cartes jusquà ce que vous ayez 6 cartes dans votre main.",
},
},{
cost: [
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Egg Splat",
fr: "Floc Œuf",
},
text: {
en: "Discard any number of Exeggcute from your hand. This attack does 60 damage for each card you discarded in this way.",
fr: "Défaussez autant de Noeunoeuf que vous voulez de votre main. Cette attaque inflige 60 dégâts pour chaque carte défaussée de cette façon.",
},
damage: 60
}],
weaknesses: [{
type: Type.FAIRY,
value: "×2"
}],
retreat: 4,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Team Up",
code: "sm9"
}
}
export default card