1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +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

107
cards/xy/xy1/76.ts Normal file
View File

@ -0,0 +1,107 @@
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: "xy1-76",
localId: 76,
// Card informations
name: {
en: "Malamar",
fr: "Sepiatroce",
},
hp: 100,
type: [
Type.DARKNESS,
],
dexId: 687,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy1/76/low.png",
fr: "https://assets.tcgdex.net/fr/xy/xy1/76/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy1/76/high.png",
fr: "https://assets.tcgdex.net/fr/xy/xy1/76/high.png",
},
},
evolveFrom: {
en: "Inkay",
fr: "Sepiatop",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.DARKNESS
],
name: {
en: "Mental Trash",
fr: "Poubelle Mentale",
},
text: {
en: "Your opponent flips 4 coins. For each tails, he or she discards a card from his or her hand.",
fr: "Votre adversaire lance 4 pièces. Pour chaque côté pile, il défausse une carte de sa main.",
},
},{
cost: [
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Distortion Beam",
fr: "Rayon de Distorsion",
},
text: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Asleep. If tails, your opponent's Active Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Endormi. Si c'est pile, le Pokémon Actif de votre adversaire est maintenant Confus.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "XY",
code: "xy1"
}
}
export default card