1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

76
data/XY/BREAKpoint/85.ts Normal file
View File

@ -0,0 +1,76 @@
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