1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-03 00:49:19 +00:00

Updated Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-03-11 22:00:05 +01:00
parent 9a1ae318f1
commit 921808589b
20 changed files with 23 additions and 832 deletions

View File

@ -3,6 +3,7 @@ import Set from '../Black & White'
const card: Card = {
name: {
fr: "Pikachu",
en: "Pikachu",
},
illustrator: "Kouki Saitou",
@ -10,9 +11,7 @@ const card: Card = {
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 60,
types: [
"Lightning",
@ -27,10 +26,12 @@ const card: Card = {
"Lightning",
],
name: {
fr: "Énergisant",
en: "Energize",
},
effect: {
en: "Attach a Lightning Energy card from your discard pile to this Pokémon.",
fr: "Attachez une carte Énergie Lightning de votre pile de défausse à ce Pokémon.",
en: "Attach a Lightning Energy card from your discard pile to this Pokémon."
},
},
@ -41,10 +42,12 @@ const card: Card = {
"Colorless",
],
name: {
fr: "Tonnerre",
en: "Thunderbolt",
},
effect: {
en: "Discard all Energy attached to this Pokémon.",
fr: "Défaussez toutes les Énergies attachées à ce Pokémon.",
},
damage: 80,
@ -57,7 +60,7 @@ const card: Card = {
},
],
retreat: 1,

View File

@ -1,64 +0,0 @@
import { Card } from '../../../interfaces'
import Set from '../Black & White'
const card: Card = {
name: {
fr: "Pikachu",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
fr: "Énergisant",
},
effect: {
fr: "Attachez une carte Énergie Lightning de votre pile de défausse à ce Pokémon.",
},
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
fr: "Tonnerre",
},
effect: {
fr: "Défaussez toutes les Énergies attachées à ce Pokémon.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
retreat: 1,
}
export default card