mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
feat: add database update (#825)
This commit is contained in:
57
data/Scarlet & Violet/White Flare/096.ts
Normal file
57
data/Scarlet & Violet/White Flare/096.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../White Flare"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tepig",
|
||||
fr: "Gruikui",
|
||||
de: "Floink",
|
||||
it: "Tepig",
|
||||
pt: "Tepig",
|
||||
es: "Tepig",
|
||||
'es-mx': "Tepig"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire"],
|
||||
|
||||
name: {
|
||||
en: "Tackle",
|
||||
fr: "Charge",
|
||||
de: "Tackle",
|
||||
it: "Azione",
|
||||
pt: "Investida",
|
||||
es: "Placaje",
|
||||
'es-mx': "Tacleada"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Fire", "Fire"],
|
||||
|
||||
name: {
|
||||
en: "Rollout",
|
||||
fr: "Roulade",
|
||||
de: "Walzer",
|
||||
it: "Rotolamento",
|
||||
pt: "Rolagem",
|
||||
es: "Rodar",
|
||||
'es-mx': "Rodada"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user