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/105.ts
Normal file
57
data/Scarlet & Violet/White Flare/105.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../White Flare"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Oshawott",
|
||||
fr: "Moustillon",
|
||||
de: "Ottaro",
|
||||
it: "Oshawott",
|
||||
pt: "Oshawott",
|
||||
es: "Oshawott",
|
||||
'es-mx': "Oshawott"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Water"],
|
||||
|
||||
name: {
|
||||
en: "Tackle",
|
||||
fr: "Charge",
|
||||
de: "Tackle",
|
||||
it: "Azione",
|
||||
pt: "Investida",
|
||||
es: "Placaje",
|
||||
'es-mx': "Tacleada"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Water", "Water"],
|
||||
|
||||
name: {
|
||||
en: "Water Gun",
|
||||
fr: "Pistolet à O",
|
||||
de: "Aquaknarre",
|
||||
it: "Pistolacqua",
|
||||
pt: "Revólver d'Água",
|
||||
es: "Pistola Agua",
|
||||
'es-mx': "Chorro de Agua"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user