1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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

70
data/EX/Dragon/21.ts Normal file
View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../Dragon'
const card: Card = {
name: {
en: "Skarmory",
},
illustrator: "Hisao Nakamura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
227,
],
hp: 70,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Pick On",
},
effect: {
en: "If the number of cards in your opponent's hand is at least 6, look at his or her hand. Choose a number of cards there until your opponent has 5 cards left in his or her hand and have your opponent shuffle the cards you chose into his or her deck.",
},
},
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Power Count",
},
effect: {
en: "Count the amount of Energy attached to all of your Pokémon and all of your opponent's Pokémon. If your Pokémon have less Energy than your opponent's, this attack does 20 damage plus 30 more damage.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
}
export default card