forked from public/foundryvtt-reve-de-dragon
Item munition
This commit is contained in:
@ -1 +1,2 @@
|
||||
export { default as RdDModelMonnaie } from "./monnaie.mjs"
|
||||
export { default as RdDModelMunition } from "./munition.mjs"
|
||||
|
10
module/models/munition.mjs
Normal file
10
module/models/munition.mjs
Normal file
@ -0,0 +1,10 @@
|
||||
import { TEMPLATE_DESCRIPTION, TEMPLATE_INVENTAIRE } from "../common/_module.mjs";
|
||||
|
||||
export default class RdDModelMunition extends foundry.abstract.TypeDataModel {
|
||||
static defineSchema() {
|
||||
return Object.assign({},
|
||||
TEMPLATE_DESCRIPTION.fields(),
|
||||
TEMPLATE_INVENTAIRE.fields()
|
||||
)
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user