mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
41
data/Scarlet & Violet/Stellar Crown/039.ts
Normal file
41
data/Scarlet & Violet/Stellar Crown/039.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Froakie",
|
||||
fr: "Grenousse",
|
||||
es: "Froakie",
|
||||
it: "Froakie",
|
||||
pt: "Froakie",
|
||||
de: "Froxy"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rain Splash",
|
||||
fr: "Pluie Éclaboussante",
|
||||
es: "Golpe de Lluvia",
|
||||
it: "Spruzzapioggia",
|
||||
pt: "Chuva Borrifante",
|
||||
de: "Regenplatscher"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user