1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-04 08:32:10 +00:00
Florian Bouillon 987d95dcc5
Updated DB :D
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-08 00:31:33 +01:00

95 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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/Card'
import Type from '../../../interfaces/Type'
import Tag from '../../../interfaces/Tag'
import Rarity from '../../../interfaces/Rarity'
import AbilityType from '../../../interfaces/AbilityType'
import Category from '../../../interfaces/Category'
const card: Card = {
// ids
id: "swsh1-113",
localId: 113,
// Card informations
name: {
en: "Grapploct",
},
hp: 130,
type: [
Type.FIGHTING,
],
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh1/113/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh1/113/high.png",
},
},
evolveFrom: {
en: "Clobbopus",
},
tags: [
Tag.STAGE1,
],
attacks: [{
cost: [
Type.FIGHTING,
Type.FIGHTING
],
name: {
en: "Octolock",
},
text: {
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.",
},
},{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Tough Swing",
},
text: {
en: "This attacks damage isnt affected by Resistance.",
},
damage: 130
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Sword & Shield",
code: "swsh1"
}
}
export default card