mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
68 lines
1.2 KiB
TypeScript
68 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Gossifleur",
|
||
fr: "Tournicoton",
|
||
es: "Gossifleur",
|
||
it: "Gossifleur",
|
||
pt: "Gossifleur",
|
||
de: "Cottini"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 50,
|
||
types: ["Grass"],
|
||
stage: "Basic",
|
||
illustrator: "Mizue",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Blot",
|
||
fr: "Pâté",
|
||
es: "Absorción",
|
||
it: "Macchia",
|
||
pt: "Blot",
|
||
de: "Klecks"
|
||
},
|
||
|
||
effect: {
|
||
en: "Heal 10 damage from this Pokémon.",
|
||
fr: "Soignez 10 dégâts de ce Pokémon.",
|
||
es: "Cura 10 puntos de daño a este Pokémon.",
|
||
it: "Cura questo Pokémon da 10 danni.",
|
||
pt: "Heal 10 damage from this Pokémon.",
|
||
de: "Heile 10 Schadenspunkte bei diesem Pokémon."
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Grass"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
description: {
|
||
en: "It whirls around in the wind while singing a joyous song. This delightful display has charmed many into raising this Pokémon."
|
||
},
|
||
|
||
dexId: [829],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |