1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

61 lines
1002 B
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'
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
}
export default card