1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

115 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
const card: Card = {
// ids
id: "dp7-SH3",
localId: "SH3",
// Card informations
name: {
en: "Voltorb",
fr: "Voltorb (different color)",
},
hp: 60,
type: [
Type.LIGHTNING,
],
dexId: 100,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp7/SH3/low",
fr: "https://assets.tcgdex.net/fr/dp/dp7/SH3/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp7/SH3/high",
fr: "https://assets.tcgdex.net/fr/dp/dp7/SH3/high",
},
},
evolveFrom: {
fr: "Voltorbe",
},
tags: [
Tag.BASIC,
],
illustrator: "Kent Kanetsuna",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Fastball",
fr: "Balle rapide",
},
text: {
en: "Choose 1 of your opponent's Pokémon.  Flip a coin.  If heads, this attack does 20 damage to that Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez 1 des Pokémon de votre adversaire. Lancez une pièce. Si c'est face, cette attaque lui inflige 20 dégâts. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
},{
cost: [
Type.LIGHTNING
],
name: {
en: "Charge Beam",
fr: "Rayon chargé",
},
text: {
en: "Search your discard pile for a lightning Energy card and attach it to Voltorb.",
fr: "Choisissez dans votre pile de défausse une carte Énergie Lightning et attachez-la à Voltorbe.",
},
damage: 10
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Thundershock",
fr: "Éclair",
},
text: {
en: "Flip a coin.  If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "+10"
}],
resistances: [{
type: Type.METAL,
value: "-20"
}],
retreat: 1,
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Stormfront",
code: "dp7"
}
}
export default card