mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-10 16:01:59 +00:00
103
cards/sm/sm3/105.ts
Normal file
103
cards/sm/sm3/105.ts
Normal 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 l’un 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
|
||||
|
Reference in New Issue
Block a user