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

feat: update TCG Pocket Promos and fix some issues (#719)

This commit is contained in:
2025-05-01 23:54:36 +02:00
committed by GitHub
parent 2ca455a957
commit e23bc6c909
29 changed files with 658 additions and 16 deletions

View File

@ -0,0 +1,44 @@
import { Card } from "../../../interfaces"
import Set from "../Promos-A"
const card: Card = {
set: Set,
name: {
en: "Rayquaza"
},
illustrator: "Yoshinobu Saito",
rarity: "Three Diamond",
category: "Pokemon",
hp: 100,
types: ["Colorless"],
description: {
en: "It lives in the ozone layer far above the clouds and cannot be seen from the ground."
},
stage: "Basic",
attacks: [{
name: {
en: "Spiral Rush"
},
damage: 70,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
effect: {
en: "Flip a coin until you get tails. This attack does 30 more damage for each heads."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card