mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-04 08:32:10 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
47 lines
761 B
TypeScript
47 lines
761 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Shinx",
|
||
fr: "Lixy"
|
||
},
|
||
|
||
illustrator: "Uta",
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
],
|
||
name: {
|
||
en: "Under Pressure",
|
||
fr: "Sous Pression"
|
||
},
|
||
effect: {
|
||
en: "If your opponent has 3 or fewer Prize cards remaining, this attack does 50 more damage.",
|
||
fr: "S’il reste 3 cartes Récompense ou moins à votre adversaire, cette attaque inflige 50 dégâts supplémentaires."
|
||
},
|
||
damage: "10+",
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
hp: 60,
|
||
types: ["Lightning"],
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|