1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

96 lines
1.9 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "sm2-66",
localId: 66,
// Card informations
name: {
en: "Sudowoodo",
fr: "Simularbre",
},
hp: 100,
type: [
Type.FIGHTING,
],
dexId: 185,
image: {
low: {
en: "https://assets.tcgdex.net/en/sm/sm2/66/low.png",
fr: "https://assets.tcgdex.net/fr/sm/sm2/66/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/sm/sm2/66/high.png",
fr: "https://assets.tcgdex.net/fr/sm/sm2/66/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 30,
name: "Hajime Kusajima"
},
abilities: [{
id: 1184,
type: AbilityType.TALENT,
name: {
en: "Roadblock",
fr: "Barrage Routier",
},
text: {
en: "Your opponent can't have more than 4 Benched Pokémon. If they have 5 or more Benched Pokémon, they discard Benched Pokémon until they have 4 Pokémon on the Bench. If more than one effect changes the number of Benched Pokémon allowed, use the smaller number.",
fr: "Votre adversaire ne peut pas avoir plus de 4 Pokémon de Banc. Sil a 5 Pokémon de Banc ou plus, il doit défausser des Pokémon de Banc jusquà en avoir 4 sur le Banc. Si plus dun effet change le nombre de Pokémon de Banc autorisés, utilisez le nombre le plus petit.",
}
}],
attacks: [{
cost: [
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Rock Throw",
fr: "Jet-Pierres",
},
damage: 40
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
retreat: 2,
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Guardians Rising",
code: "sm2"
}
}
export default card