1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-28 06:49: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,73 @@
import { Card } from '../../../interfaces'
import Set from '../Sword & Shield'
const card: Card = {
name: {
en: "Grapploct",
fr: "Krakos",
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 130,
types: [
"Fightning",
],
evolveFrom: {
en: "Clobbopus",
fr: "Poulpaf",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fightning",
"Fightning",
],
name: {
en: "Octolock",
fr: "Octoprise",
},
effect: {
en: "Until this Grapploct leaves the Active Spot, the Defending Pokémon's attacks cost ColorlessColorless more, and the Defending Pokémon can't retreat. This effect can't be applied more than once.",
fr: "Tant que ce Krakos est sur le Poste Actif, les attaques du Pokémon Défenseur coûtent ColorlessColorless de plus, et le Pokémon Défenseur ne peut pas battre en retraite. Cet effet nest applicable quune fois.",
},
},
{
cost: [
"Fightning",
"Fightning",
"Colorless",
],
name: {
en: "Tough Swing",
fr: "Frappe Solide",
},
effect: {
en: "This attacks damage isnt affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.",
},
damage: 130,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card