mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 17:39:18 +00:00
Added Celebrations (#86)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
35
data/Sword & Shield/Celebrations/15A1.ts
Normal file
35
data/Sword & Shield/Celebrations/15A1.ts
Normal file
@ -0,0 +1,35 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Venusaur"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Grass"],
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Solarbeam"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Grass", "Grass", "Grass", "Grass"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: ""
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user