mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 11:51:59 +00:00
started working on the latest promo
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
This commit is contained in:
56
cards/mc/2021swsh/25.ts
Normal file
56
cards/mc/2021swsh/25.ts
Normal file
@@ -0,0 +1,56 @@
|
||||
import Card from "@tcgdex/sdk/interfaces/Card";
|
||||
import Tag from "@tcgdex/sdk/interfaces/Tag";
|
||||
import Category from "@tcgdex/sdk/interfaces/Category";
|
||||
import Type from "@tcgdex/sdk/interfaces/Type";
|
||||
import Rarity from "@tcgdex/sdk/interfaces/Rarity";
|
||||
import set from '../../../sets/mc/2021swsh'
|
||||
|
||||
const card: Card = {
|
||||
id: "2021swsh-1",
|
||||
localId: 1,
|
||||
dexId: 1,
|
||||
|
||||
name: {
|
||||
en: "Bulbasaur"
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.GRASS
|
||||
],
|
||||
|
||||
tags: [
|
||||
Tag.BASIC
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
name: {
|
||||
en: "Razor Leaf"
|
||||
},
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
damage: 30
|
||||
}
|
||||
],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "x2"
|
||||
}],
|
||||
|
||||
set: set,
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.NONE,
|
||||
|
||||
illustrator: "Sanosuke Sakuma",
|
||||
|
||||
category: Category.POKEMON
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user