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

106 lines
2.0 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: "dp1-16",
localId: 16,
// Card informations
name: {
en: "Staraptor",
fr: "Etouraptor",
},
hp: 100,
type: [
Type.COLORLESS,
],
dexId: 398,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp1/16/low",
fr: "https://assets.tcgdex.net/fr/dp/dp1/16/low",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp1/16/high",
fr: "https://assets.tcgdex.net/fr/dp/dp1/16/high",
},
},
evolveFrom: {
en: "Staravia",
fr: "Etourvol",
},
tags: [
Tag.STAGE2,
],
illustrator: "Masahiko Ishii",
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Accelerative Dive",
fr: "Plongeon accélérant",
},
text: {
en: "Flip a coin. If tails, this attack does nothing. If heads, prevent all damage done to Staraptor by attacks (both yours and your opponent's) until the end of your next turn.",
fr: "Lancez une pièce. Si c'est pile, cette attaque est sans effet. Si c'est face, prévenez tous les dégâts infligés à Etouraptor par des attaques (les vôtres et celles de votre adversaire) jusqu'à la fin de votre prochain tour.",
},
damage: 30
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Brave Heart",
fr: "Bravoure",
},
text: {
en: "Flip a coin. If tails, Staraptor does 100 damage to itself.",
fr: "Lancez une pièce. Si c'est pile, Etouraptor s'inflige 100 dégâts.",
},
damage: 100
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "+30"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Diamond & Pearl",
code: "dp1"
}
}
export default card