mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
Added new celebrations informations (#83)
Signed-off-by: Avior <github@avior.me>
This commit is contained in:
parent
7655760c3e
commit
eba7e71e7f
@ -5,7 +5,7 @@ const set: Set = {
|
||||
id: "swsh7.5",
|
||||
|
||||
name: {
|
||||
en: "Celebration"
|
||||
en: "Celebrations"
|
||||
},
|
||||
|
||||
serie: serie,
|
25
data/Sword & Shield/Celebrations/1.ts
Normal file
25
data/Sword & Shield/Celebrations/1.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Ho-Oh"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fire"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/10.ts
Normal file
25
data/Sword & Shield/Celebrations/10.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Zekrom"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/11.ts
Normal file
25
data/Sword & Shield/Celebrations/11.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Mew"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/12.ts
Normal file
25
data/Sword & Shield/Celebrations/12.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Xerneas"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/13.ts
Normal file
25
data/Sword & Shield/Celebrations/13.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Cosmog"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/14.ts
Normal file
25
data/Sword & Shield/Celebrations/14.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Cosmoem"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
stage: "Stage1"
|
||||
}
|
||||
|
||||
export default card
|
23
data/Sword & Shield/Celebrations/15.ts
Normal file
23
data/Sword & Shield/Celebrations/15.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Lunala"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
types: ["Psychic"]
|
||||
}
|
||||
|
||||
export default card
|
23
data/Sword & Shield/Celebrations/16.ts
Normal file
23
data/Sword & Shield/Celebrations/16.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Zacian V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
types: ["Psychic"]
|
||||
}
|
||||
|
||||
export default card
|
23
data/Sword & Shield/Celebrations/17.ts
Normal file
23
data/Sword & Shield/Celebrations/17.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Groudon"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
types: ["Fighting"]
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/18.ts
Normal file
25
data/Sword & Shield/Celebrations/18.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Zamazenta V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 220,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
23
data/Sword & Shield/Celebrations/19.ts
Normal file
23
data/Sword & Shield/Celebrations/19.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Yveltal"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
types: ["Darkness"]
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/2.ts
Normal file
25
data/Sword & Shield/Celebrations/2.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Reshiram"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Fire"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/20.ts
Normal file
25
data/Sword & Shield/Celebrations/20.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Dialga"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Metal"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
23
data/Sword & Shield/Celebrations/21.ts
Normal file
23
data/Sword & Shield/Celebrations/21.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Solgaleo"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
types: ["Metal"]
|
||||
}
|
||||
|
||||
export default card
|
23
data/Sword & Shield/Celebrations/22.ts
Normal file
23
data/Sword & Shield/Celebrations/22.ts
Normal file
@ -0,0 +1,23 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Lugia"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
types: ["Colorless"]
|
||||
}
|
||||
|
||||
export default card
|
28
data/Sword & Shield/Celebrations/23.ts
Normal file
28
data/Sword & Shield/Celebrations/23.ts
Normal file
@ -0,0 +1,28 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Professor’s Research"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Discard your hand and draw 7 cards."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
28
data/Sword & Shield/Celebrations/24.ts
Normal file
28
data/Sword & Shield/Celebrations/24.ts
Normal file
@ -0,0 +1,28 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Professor’s Research Full Art)"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Discard your hand and draw 7 cards."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/25.ts
Normal file
25
data/Sword & Shield/Celebrations/25.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Mew Secret)"
|
||||
},
|
||||
|
||||
rarity: "Secret Rare",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Water"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/3.ts
Normal file
25
data/Sword & Shield/Celebrations/3.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Kyogre"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Water"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/4.ts
Normal file
25
data/Sword & Shield/Celebrations/4.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Palkia"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Water"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/5.ts
Normal file
25
data/Sword & Shield/Celebrations/5.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Pikachu"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/6.ts
Normal file
25
data/Sword & Shield/Celebrations/6.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Flying Pikachu V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 190,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/7.ts
Normal file
25
data/Sword & Shield/Celebrations/7.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Flying Pikachu VMAX"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 310,
|
||||
types: ["Lightning"],
|
||||
stage: "VMAX"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/8.ts
Normal file
25
data/Sword & Shield/Celebrations/8.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Surfing Pikachu V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 200,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic"
|
||||
}
|
||||
|
||||
export default card
|
25
data/Sword & Shield/Celebrations/9.ts
Normal file
25
data/Sword & Shield/Celebrations/9.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Celebrations'
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Surfing Pikachu VMAX"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 310,
|
||||
types: ["Lightning"],
|
||||
stage: "VMAX"
|
||||
}
|
||||
|
||||
export default card
|
Loading…
x
Reference in New Issue
Block a user