mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-06 17:27:52 +00:00
68 lines
966 B
TypeScript
68 lines
966 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Indeedee",
|
||
fr: "Wimessir"
|
||
},
|
||
|
||
illustrator: "Mizue",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Replenish Time",
|
||
fr: "Gain de Temps"
|
||
},
|
||
effect: {
|
||
en: "Heal 30 damage from each of your Pokémon.",
|
||
fr: "Soignez 30 dégâts de chacun de vos Pokémon."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Psybeam",
|
||
fr: "Rafale Psy"
|
||
},
|
||
effect: {
|
||
en: "Your opponent’s Active Pokémon is now Confused.",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Confus."
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
hp: 100,
|
||
types: ["Psychic"]
|
||
}
|
||
|
||
export default card
|