mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
Fixed XY informations (#43)
* Updated Kalos Starter Set data Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed XY set Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Fixed some more XY sets Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Some more fixes Signed-off-by: Avior <florian.bouillon@delta-wings.net> * More updated :D Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Finished update in English Signed-off-by: Avior <florian.bouillon@delta-wings.net> * Updated XY datas Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -6,42 +6,52 @@ const card: Card = {
|
||||
en: "Doduo",
|
||||
fr: "Doduo",
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Trainer",
|
||||
|
||||
category: "Pokemon",
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
84,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 10 damage times the number of heads.",
|
||||
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de côtés face.",
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Fury Attack"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip 3 coins. This attack does 10 damage times the number of heads."
|
||||
},
|
||||
|
||||
damage: "10×",
|
||||
cost: ["Colorless"]
|
||||
}]
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user