mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 01:37:52 +00:00
100 lines
1.5 KiB
TypeScript
100 lines
1.5 KiB
TypeScript
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: "xy8-79",
|
|
localId: 79,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Marowak BREAK",
|
|
fr: "Ossatueur TURBO",
|
|
},
|
|
|
|
hp: 140,
|
|
|
|
type: [
|
|
Type.FIGHTING,
|
|
],
|
|
|
|
dexId: 105,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/xy/xy8/79/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xy8/79/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/xy/xy8/79/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/xy/xy8/79/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Marowak",
|
|
fr: "Ossatueur",
|
|
},
|
|
|
|
tags: [
|
|
Tag.BREAK,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 4,
|
|
name: "5ban Graphics"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.FIGHTING,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Bone Revenge",
|
|
fr: "Règle des Évolutions TURBO",
|
|
},
|
|
text: {
|
|
en: "This attack does 40 more damage for each Prize card your opponent has taken.",
|
|
},
|
|
damage: 20
|
|
},{
|
|
cost: [
|
|
Type.FIGHTING,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
fr: "Os Vengeance",
|
|
},
|
|
text: {
|
|
fr: "Cette attaque inflige 40 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récupérée.",
|
|
},
|
|
damage: "20+"
|
|
}],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
rarity: Rarity.RareBREAK,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "BREAKthrough",
|
|
code: "xy8"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|