1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 01:19:18 +00:00
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-03 15:18:40 +01:00
commit 0d2a757cae
12077 changed files with 1123810 additions and 0 deletions

97
cards/ex/ex7/29.ts Normal file
View File

@ -0,0 +1,97 @@
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: "ex7-29",
localId: 29,
// Card informations
name: {
en: "Dark Arbok",
},
hp: 90,
type: [
Type.GRASS,
Type.DARKNESS,
],
dexId: 24,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex7/29/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex7/29/high.png",
},
},
evolveFrom: {
en: "Ekans",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 16,
name: "Nakaoka"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Swallow Up",
},
text: {
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: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Extra Poison",
},
text: {
en: "If the Defending Pokémon is Pokémon-ex, the Defending Pokémon is now Asleep and Poisoned.",
},
damage: 30
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Team Rocket Returns",
code: "ex7"
}
}
export default card