mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
Added informations (#25)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
49
data/Sword & Shield/Battle Styles/74.ts
Normal file
49
data/Sword & Shield/Battle Styles/74.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Battle Styles'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gurdurr",
|
||||
fr: "Ouvrifier"
|
||||
},
|
||||
|
||||
illustrator: "Uta",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Timburr",
|
||||
fr: "Charpenti"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Pound",
|
||||
fr: "Écras’Face"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Hammer In",
|
||||
fr: "Enfoncement"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Fighting", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user