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:
53
data/Sword & Shield/Battle Styles/116.ts
Normal file
53
data/Sword & Shield/Battle Styles/116.ts
Normal file
@ -0,0 +1,53 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Battle Styles'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Purugly",
|
||||
fr: "Chaffreux"
|
||||
},
|
||||
|
||||
illustrator: "Akira Komayama",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Glameow",
|
||||
fr: "Chaglam"
|
||||
},
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Caturday",
|
||||
fr: "Chamedi"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Draw 3 cards. If you do, this Pokémon is now Asleep.",
|
||||
fr: "Piochez 3 cartes. Dans ce cas, ce Pokémon est maintenant Endormi."
|
||||
},
|
||||
|
||||
cost: ["Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Claw Slash",
|
||||
fr: "Tranch’Griffe"
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user