mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-04 20:59:55 +00:00
* Added to interface * Added Regulation mark to all current cards * Ready for merge
77 lines
1.2 KiB
TypeScript
77 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Gothorita",
|
||
fr: "Mesmérella"
|
||
},
|
||
|
||
illustrator: "sowsow",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 80,
|
||
|
||
types: [
|
||
"Psychic",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Gothita",
|
||
fr: "Scrutella"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
],
|
||
name: {
|
||
en: "Whiny Voice",
|
||
fr: "Voix Suppliante"
|
||
},
|
||
effect: {
|
||
en: "Choose a random card from your opponent’s hand. Your opponent reveals that card and shuffles it into their deck.",
|
||
fr: "Choisissez une carte au hasard dans la main de votre adversaire. Votre adversaire montre cette carte, puis la mélange avec son deck."
|
||
},
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Psychic",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Double Spin",
|
||
fr: "Double Tour"
|
||
},
|
||
effect: {
|
||
en: "Flip 2 coins. This attack does 30 damage for each heads.",
|
||
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts pour chaque côté face."
|
||
},
|
||
damage: "30×",
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|