1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-04 20:59:55 +00:00
Florian Bouillon ec1b6a06b0
Add regulation mark (#17)
* Added to interface

* Added Regulation mark to all current cards

* Ready for merge
2021-05-28 11:21:10 +02:00

77 lines
1.2 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 '../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 opponents 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