1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 16:01:59 +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/sm3/105.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: "sm3-105",
localId: 105,
// Card informations
name: {
en: "Porygon-Z",
fr: "Porygon-Z",
},
hp: 130,
type: [
Type.COLORLESS,
],
dexId: 474,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm3/105/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/105/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm3/105/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm3/105/high.png",
},
},
evolveFrom: {
en: "Porygon2",
fr: "Porygon2",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 46,
name: "MAHOU"
},
abilities: [{
id: 1331,
type: AbilityType.TALENT,
name: {
en: "Initialize",
fr: "Initialisation",
},
text: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may devolve each of your opponent's evolved Pokémon by putting the highest Stage Evolution card on it into your opponent's hand.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer lun de vos Pokémon pendant votre tour, vous pouvez faire dés-évoluer chacun des Pokémon évolués de votre adversaire en plaçant la carte du niveau dÉvolution le plus élevé dans la main de votre adversaire.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Zap Cannon",
fr: "Élecanon",
},
text: {
en: "This Pokémon can't use Zap Cannon during your next turn.",
fr: "Ce Pokémon ne peut pas utiliser Élecanon pendant votre prochain tour.",
},
damage: 80
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
retreat: 2,
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Burning Shadows",
code: "sm3"
}
}
export default card