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

103
cards/sm/sm35/37.ts Normal file
View File

@ -0,0 +1,103 @@
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: "sm35-37",
localId: 37,
// Card informations
name: {
en: "Arbok",
fr: "Arbok",
},
hp: 120,
type: [
Type.PSYCHIC,
],
dexId: 24,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm35/37/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm35/37/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm35/37/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm35/37/high.png",
},
},
evolveFrom: {
en: "Ekans",
fr: "Abo",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 36,
name: "kodama"
},
abilities: [{
id: 542,
type: AbilityType.TALENT,
name: {
en: "Intimidating Pattern",
fr: "Style Intimidant",
},
text: {
en: "As long as this Pokémon is your Active Pokémon, your opponent's Active Pokémon's attacks do 30 less damage (before applying Weakness and Resistance).",
fr: "Tant que ce Pokémon est votre Pokémon Actif, les attaques du Pokémon Actif de votre adversaire infligent 30 dégâts de moins (avant application de la Faiblesse et de la Résistance).",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Venomous Fang",
fr: "Croc-Poison",
},
text: {
en: "Your opponent's Active Pokémon is now Poisoned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.",
},
damage: 70
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 3,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Shining Legends",
code: "sm35"
}
}
export default card