1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

67 lines
819 B
TypeScript
Raw Permalink 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'
import Set from '../Gym Challenge'
const card: Card = {
name: {
en: "Koga's Arbok",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
24,
],
hp: 90,
types: [
"Grass",
],
evolveFrom: {
en: "Ekans",
},
stage: "Stage1",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Poison Buildup",
},
effect: {
en: "Koga's Arbok is now Poisoned.",
},
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Poison Powder",
},
effect: {
en: "If Koga's Arbok is Poisoned, this attack's base damage is 40 instead of 20 and the Defending Pokémon is now Poisoned.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card