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

100
cards/sm/sm8/13.ts Normal file
View File

@ -0,0 +1,100 @@
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: "sm8-13",
localId: 13,
// Card informations
name: {
en: "Skiploom",
fr: "Floravol",
},
hp: 60,
type: [
Type.GRASS,
],
dexId: 188,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm8/13/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm8/13/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm8/13/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm8/13/high.png",
},
},
evolveFrom: {
en: "Hoppip",
fr: "Granivol",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 67,
name: "Hitoshi Ariga"
},
abilities: [{
id: 1339,
type: AbilityType.TALENT,
name: {
en: "Floral Path to the Sky",
fr: "Voie Céleste Fleurie",
},
text: {
en: "Once during your turn (before your attack), you may search your deck for Jumpluff, put this Pokémon and all cards attached to it in the Lost Zone, and put that Jumpluff in its place. Then, shuffle your deck.",
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez chercher Cotovol dans votre deck, placer ce Pokémon-ci et toutes les cartes qui lui sont attachées dans la Zone Perdue, puis le remplacer par ce Cotovol. Mélangez ensuite votre deck.",
}
}],
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Tackle",
fr: "Charge",
},
damage: 30
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Lost Thunder",
code: "sm8"
}
}
export default card