mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 13:21:58 +00:00
feat: add database update (#825)
This commit is contained in:
43
data/Scarlet & Violet/White Flare/015.ts
Normal file
43
data/Scarlet & Violet/White Flare/015.ts
Normal file
@@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../White Flare"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Simisear",
|
||||
fr: "Flamoutan",
|
||||
de: "Grillchita",
|
||||
it: "Simisear",
|
||||
pt: "Simisear",
|
||||
es: "Simisear",
|
||||
'es-mx': "Simisear"
|
||||
},
|
||||
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fire"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Gentle Slap",
|
||||
fr: "Gifle Douce",
|
||||
de: "Sanfter Hieb",
|
||||
it: "Schiaffetto",
|
||||
pt: "Tapinha",
|
||||
es: "Bofetada Gentil",
|
||||
'es-mx': "Cachetadita"
|
||||
},
|
||||
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user