1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05:12:11 +00:00

77 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../BREAKpoint'
const card: Card = {
name: {
en: "Aromatisse",
fr: "Cocotine",
},
illustrator: "kirisAki",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
683,
],
hp: 90,
types: [
"Fairy",
],
evolveFrom: {
en: "Spritzee",
fr: "Fluvetin",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Dizzying Cologne",
fr: "Arôme Enivrant",
},
effect: {
en: "If your opponent's Active Pokémon is a Pokémon-EX, this attack does 40 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon-EX, cette attaque inflige 40 dégâts supplémentaires.",
},
damage: 20,
},
{
cost: [
"Fairy",
"Colorless",
],
name: {
en: "Fairy Wind",
fr: "Vent Féérique",
},
damage: 40,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
resistances: [
{
type: "Darkness",
value: "-20"
},
],
retreat: 1,
}
export default card