1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

73 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 '../Hidden Fates'
const card: Card = {
name: {
en: "Arbok",
fr: "Arbok",
},
illustrator: "kirisAki",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
24,
],
hp: 120,
types: [
"Psychic",
],
evolveFrom: {
en: "Ekans",
fr: "Abo",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Last Pattern",
fr: "Dernier Motif",
},
effect: {
en: "If this Pokémon is Knocked Out by damage from an opponents attack, discard 2 random cards from your opponents hand.",
fr: "Si ce Pokémon est mis K.O. par les dégâts dune attaque de votre adversaire, défaussez 2 cartes au hasard de la main de votre adversaire.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
],
name: {
en: "Rocket Tail",
fr: "Queue Rocket",
},
effect: {
en: "If Jessie & James is in your discard pile, this attack does 80 more damage.",
fr: "Si la carte Jessie et James est dans votre pile de défausse, cette attaque inflige 80 dégâts supplémentaires.",
},
damage: "50+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card