1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 10:17:50 +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

94 lines
1.8 KiB
TypeScript

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: "xy10-62",
localId: 62,
// Card informations
name: {
en: "Bronzong BREAK",
fr: "Archéodong TURBO",
},
hp: 130,
type: [
Type.METAL,
],
dexId: 437,
image: {
low: {
en: "https://assets.tcgdex.net/en/xy/xy10/62/low",
fr: "https://assets.tcgdex.net/fr/xy/xy10/62/low",
},
high: {
en: "https://assets.tcgdex.net/en/xy/xy10/62/high",
fr: "https://assets.tcgdex.net/fr/xy/xy10/62/high",
},
},
evolveFrom: {
en: "Bronzong",
fr: "Archéodong",
},
tags: [
Tag.BREAK,
],
illustrator: "5ban Graphics",
attacks: [{
cost: [
Type.METAL,
Type.COLORLESS
],
name: {
en: "Metal Rain",
fr: "Règle des Évolutions TURBO",
},
text: {
en: "Discard as many Metal Energy attached to this Pokémon as you like. For each Energy card discarded in this way, choose 1 of your opponent's Pokémon and do 30 damage to it. Don't apply Weakness and Resistance. (You may choose the same Pokémon more than once.)",
},
},{
cost: [
Type.METAL,
Type.COLORLESS
],
name: {
fr: "Pluie Dorée",
},
text: {
fr: "Défaussez autant d'Énergies Metal attachées à ce Pokémon que vous voulez. Pour chaque carte Énergie défaussée de cette façon, choisissez l'un des Pokémon de votre adversaire et infligez-lui 30 dégâts. N'appliquez ni la Faiblesse ni la Résistance. (Vous pouvez choisir plusieurs fois le même Pokémon.)",
},
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Fates Collide",
code: "xy10"
}
}
export default card