1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

104 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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