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:
73
data/Black & White/Dragons Exalted/103.ts
Normal file
73
data/Black & White/Dragons Exalted/103.ts
Normal file
@ -0,0 +1,73 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Dragons Exalted'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Slaking",
|
||||
fr: "Monaflèmit",
|
||||
},
|
||||
illustrator: "Naoki Saito",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
289,
|
||||
],
|
||||
hp: 150,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Vigoroth",
|
||||
fr: "Vigoroth",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Ability",
|
||||
name: {
|
||||
en: "Unobservant",
|
||||
fr: "Distrait",
|
||||
},
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is a Basic Pokémon, this Pokémon can't attack.",
|
||||
fr: "Si le Pokémon Actif de votre adversaire est un Pokémon de base, ce Pokémon ne peut pas attaquer.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Crushing Blow",
|
||||
fr: "Coup Écrasant",
|
||||
},
|
||||
effect: {
|
||||
en: "Discard an Energy attached to the Defending Pokémon.",
|
||||
fr: "Défaussez une Énergie attachée au Pokémon Défenseur.",
|
||||
},
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user