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

102 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: "dp5-48",
localId: 48,
// Card informations
name: {
en: "Sudowoodo",
fr: "Simularbre",
},
hp: 80,
type: [
Type.FIGHTING,
],
dexId: 185,
image: {
low: {
en: "https://assets.tcgdex.net/en/dp/dp5/48/low.png",
fr: "https://assets.tcgdex.net/fr/dp/dp5/48/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/dp/dp5/48/high.png",
fr: "https://assets.tcgdex.net/fr/dp/dp5/48/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Flail",
fr: "Fléau",
},
text: {
en: "Does 10 damage times the number of damage counters on Sudowoodo.",
fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégât sur Simularbre.",
},
damage: 10
},{
cost: [
Type.FIGHTING,
Type.FIGHTING
],
name: {
en: "Wood Hammer",
fr: "Martobois",
},
text: {
en: "Sudowoodo does 30 damage to itself.",
fr: "Simularbre s'inflige 30 dégâts.",
},
damage: 50
}],
weaknesses: [{
type: Type.WATER,
value: "+20"
}],
retreat: 2,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Majestic Dawn",
code: "dp5"
}
}
export default card