mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 03:42:13 +00:00
57 lines
741 B
TypeScript
57 lines
741 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Fates Collide'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Solosis",
|
||
fr: "Nucléos",
|
||
},
|
||
illustrator: "match",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
577,
|
||
],
|
||
hp: 30,
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
stage: "Basic",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Mini Link",
|
||
fr: "Mini Lien",
|
||
},
|
||
effect: {
|
||
en: "If Solosis is on your Bench, this attack does 30 more damage.",
|
||
fr: "Si Nucléos est sur votre Banc, cette attaque inflige 30 dégâts supplémentaires.",
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|