mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
70 lines
1015 B
TypeScript
70 lines
1015 B
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Team Rocket Returns'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Dark Arbok",
|
||
},
|
||
illustrator: "Nakaoka",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
24,
|
||
],
|
||
hp: 90,
|
||
types: [
|
||
"Grass",
|
||
"Darkness",
|
||
],
|
||
evolveFrom: {
|
||
en: "Ekans",
|
||
},
|
||
stage: "Stage1",
|
||
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Grass",
|
||
],
|
||
name: {
|
||
en: "Swallow Up",
|
||
},
|
||
effect: {
|
||
en: "Before doing damage, count the remaining HP of the Defending Pokémon and Dark Arbok. If the Defending Pokémon has fewer remaining HP than Dark Arbok's, this attack does 10 damage plus 30 more damage.",
|
||
},
|
||
damage: 10,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Extra Poison",
|
||
},
|
||
effect: {
|
||
en: "If the Defending Pokémon is Pokémon-ex, the Defending Pokémon is now Asleep and Poisoned.",
|
||
},
|
||
damage: 30,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Psychic",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|