mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-03 00:49:19 +00:00
feat: Add Journey Together (#701)
* feat: Add static data for Journey Together Signed-off-by: Avior <git@avior.me> * feat: finish naming Signed-off-by: Avior <git@avior.me> * should be done Signed-off-by: Avior <git@avior.me> * Update index.ts --------- Signed-off-by: Avior <git@avior.me>
This commit is contained in:
67
data/Scarlet & Violet/Journey Together/083.ts
Normal file
67
data/Scarlet & Violet/Journey Together/083.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Journey Together"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pancham",
|
||||
fr: "Pandespiègle",
|
||||
es: "Pancham",
|
||||
de: "Pam-Pam",
|
||||
it: "Pancham",
|
||||
pt: "Pancham",
|
||||
'es-mx': "Pancham"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Corkscrew Punch",
|
||||
fr: "Poing Tire-Bouchon",
|
||||
es: "Puño Tirabuzón",
|
||||
de: "Korkenzieherhieb",
|
||||
it: "Pugno Rotante",
|
||||
pt: "Soco Saca-rolha",
|
||||
'es-mx': "Puño Sacacorchos"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Focus Fist",
|
||||
fr: "Poing Concentré",
|
||||
es: "Puño Infalible",
|
||||
de: "Fokussierfaust",
|
||||
it: "Concentrapugno",
|
||||
pt: "Punho Focalizado",
|
||||
'es-mx': "Puño Enfocado"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
||||
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
|
||||
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen.",
|
||||
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
|
||||
pt: "Jogue uma moeda. Se sair coroa, este ataque não fará nada.",
|
||||
'es-mx': "Lanza 1 moneda. Si sale cruz, este ataque no hace nada."
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user