1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-02 20:51:57 +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/dp/dp6/140.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: "dp6-140",
localId: 140,
// Card informations
name: {
en: "Azelf",
fr: "Créfadet",
},
hp: 90,
type: [
Type.PSYCHIC,
],
dexId: 482,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp6/140/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/140/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp6/140/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp6/140/high.png",
},
},
evolveFrom: {},
tags: [
Tag.LEVELUP,
],
illustrator: {
id: 17,
name: "Shizurow"
},
abilities: [{
id: 427,
type: AbilityType.POKEBODY,
name: {
en: "Psychic Aura",
fr: "Aura psy",
},
text: {
en: "Each of your Psychic Pokémon has no Weakness.",
fr: "Chacun de vos Pokémon Psychic ne possède pas de Faiblesse.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Deep Balance",
fr: "Bon équilibre",
},
text: {
en: "Choose 1 of your opponent's Pokémon. Put 1 damage counter on that Pokémon for each Energy attached to all of your opponent's Pokémon.",
fr: "Choisissez 1 des Pokémon de votre adversaire. Placez 1 marqueur de dégât sur ce Pokémon pour chaque Énergie attachée à tous les Pokémon de votre adversaire.",
},
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
retreat: 1,
rarity: Rarity.RareHoloLvX,
category: Category.POKEMON,
set: {
name: "Legends Awakened",
code: "dp6"
}
}
export default card