1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 12:59:18 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,72 @@
import { Card } from '../../../interfaces'
import Set from '../Boundaries Crossed'
const card: Card = {
name: {
en: "Stoutland",
fr: "Mastouffe",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
508,
],
hp: 140,
types: [
"Colorless",
],
evolveFrom: {
en: "Herdier",
fr: "Ponchien",
},
stage: "Stage2",
abilities: [
{
type: "Ability",
name: {
en: "Sentinel",
fr: "Sentinelle",
},
effect: {
en: "As long as this Pokémon is your Active Pokémon, your opponent can't play any Supporter cards from his or her hand.",
fr: "Tant que ce Pokémon est votre Pokémon Actif, votre adversaire ne peut pas jouer de cartes Supporter de sa main.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Wild Tackle",
fr: "Tacle Brutal",
},
effect: {
en: "Flip a coin. If tails, this Pokémon does 20 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, ce Pokémon s'inflige 20 dégâts.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 3,
}
export default card