1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16: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/pl/pl3/141.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: "pl3-141",
localId: 141,
// Card informations
name: {
en: "Absol G",
fr: "Absol ",
},
hp: 100,
type: [
Type.DARKNESS,
],
dexId: 359,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl3/141/low.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/141/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl3/141/high.png",
fr: "https://assets.tcgdex.net/fr/pl/pl3/141/high.png",
},
},
evolveFrom: {},
tags: [
Tag.LEVELUP,
Tag.SP,
],
illustrator: {
id: 123,
name: "Yusuke Ishikawa"
},
abilities: [{
id: 199,
type: AbilityType.POKEPOWER,
name: {
en: "Darkness Send",
fr: "Envoi obscur",
},
text: {
en: "Once during your turn (before your attack), when you put Absol G LV.X from your hand onto your Active Absol G, you may flip 3 coins. For each heads, put the top card from your opponent's deck in the Lost Zone.",
fr: "Une seule fois lors de votre tour (avant votre attaque), lorsque vous placez Absol NIV.X de votre main sur votre Absol Actif, vous pouvez lancer 3 pièces. Pour chaque face, placez la carte du dessus du deck de votre adversaire dans la Zone Perdue.",
}
}],
attacks: [{
cost: [
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Darkness Slugger",
fr: "Joueur obscur",
},
text: {
en: "You may discard a card from your hand. If you do, this attack does 30 damage plus 30 more damage.",
fr: "Vous pouvez défausser une carte de votre main. Cette attaque inflige alors 30 dégâts plus 30 dégâts supplémentaires.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RareHoloLvX,
category: Category.POKEMON,
set: {
name: "Supreme Victors",
code: "pl3"
}
}
export default card