1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

68
data/Base/Fossil/8.ts Normal file
View File

@ -0,0 +1,68 @@
import { Card } from '../../../interfaces'
import Set from '../Fossil'
const card: Card = {
name: {
en: "Hypno",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
97,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Drowzee",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Prophecy",
},
effect: {
en: "Look at up to 3 cards from the top of either player's deck and rearrange them as you like.",
},
},
{
cost: [
"Psychic",
"Psychic",
"Psychic",
],
name: {
en: "Dark Mind",
},
effect: {
en: "If your opponent has any Benched Pokémon, choose 1 of them and this attack does 10 damage to it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card