1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +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

68 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 '../Rebel Clash'
const card: Card = {
name: {
en: "Grimmsnarl",
fr: "Angoliath"
},
illustrator: "nagimiso",
rarity: "Rare",
category: "Pokemon",
set: Set,
evolveFrom: {
en: "Morgrem",
fr: "Fourbelin"
},
abilities: [
{
type: "Ability",
name: {
en: "Dark Oath",
fr: "Serment Obscur"
},
effect: {
en: "As long as this Pokémon is in the Active Spot, your opponents Active Pokémons attacks cost Colorless more.",
fr: "Tant que ce Pokémon est sur le Poste Actif, les attaques du Pokémon Actif de votre adversaire coûtent Colorless de plus."
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Energy Press",
fr: "Pression Énergétique"
},
effect: {
en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie attachée au Pokémon Actif de votre adversaire."
},
damage: "100+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
hp: 170,
types: ["Darkness"],
regulationMark: "D"
}
export default card