mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Updated informations (#23)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
55
data/Sword & Shield/SWSH Black Star Promos/SWSH049.ts
Normal file
55
data/Sword & Shield/SWSH Black Star Promos/SWSH049.ts
Normal file
@ -0,0 +1,55 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../SWSH Black Star Promos'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dubwool V",
|
||||
fr: "Moumouflon V"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 210,
|
||||
types: ["Colorless"],
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Soft Wool",
|
||||
fr: "Laine Douce"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||||
fr: "Ce Pokémon subit 30 dégâts de moins provenant des attaques (après application de la Faiblesse et de la Résistance)."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Revenge Blast",
|
||||
fr: "Explo-Vengeance"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "This attack does 30 more damage for each Prize card your opponent has taken.",
|
||||
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque carte Récompense que votre adversaire a récupérée."
|
||||
},
|
||||
|
||||
damage: "120+",
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user