1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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

102
cards/col/col1/18.ts Normal file
View File

@ -0,0 +1,102 @@
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: "col1-18",
localId: 18,
// Card informations
name: {
en: "Pachirisu",
fr: "Pachirisu",
},
hp: 60,
type: [
Type.LIGHTNING,
],
dexId: 417,
image: {
low: {
en: "https://assets.tcgdex.net/en/col/col1/18/low.png",
fr: "https://assets.tcgdex.net/fr/col/col1/18/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/col/col1/18/high.png",
fr: "https://assets.tcgdex.net/fr/col/col1/18/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 63,
name: "Noriko Hotta"
},
abilities: [{
id: 664,
type: AbilityType.POKEPOWER,
name: {
en: "Self-Generation",
fr: "Auto-génération",
},
text: {
en: "Once during your turn, when you put Pachirisu from your hand onto your Bench, you may attach up to 2 Lightning Energy cards from your hand to Pachirisu.",
fr: "Une seule fois pendant votre tour, lorsque vous placez Pachirisu de votre main sur votre Banc, vous pouvez lui attacher 2 cartes Énergie Lightning.",
}
}],
attacks: [{
cost: [
Type.LIGHTNING,
Type.LIGHTNING
],
name: {
en: "Shocking Bolt",
fr: "Éclair neutralisant",
},
text: {
en: "Put all Energy cards attached to Pachirisu in the Lost Zone.",
fr: "Placez toutes les cartes Énergie attachées à Pachirisu dans la Zone Perdue.",
},
damage: 50
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Call of Legends",
code: "col1"
}
}
export default card