1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

75 lines
1.3 KiB
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 '../Team Up'
const card: Card = {
name: {
en: "Absol",
fr: "Absol",
},
illustrator: "nagimiso",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
359,
],
hp: 100,
types: [
"Darkness",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Dark Ambition",
fr: "Noire Ambition",
},
effect: {
en: "If your opponent's Active Pokémon is a Basic Pokémon, its Retreat Cost is Colorless more.",
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon de base, son Coût de Retraite augmente de Colorless.",
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Shadow Seeker",
fr: "Chercheur dOmbres",
},
effect: {
en: "This attack does 30 more damage for each Colorless in your opponent's Active Pokémon's Retreat Cost.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Colorless dans le Coût de Retraite du Pokémon Actif de votre adversaire.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card