Skip to content

Commit

Permalink
feat(model): Add helper defs for #79
Browse files Browse the repository at this point in the history
Signed-off-by: macinsight <gh@macinsight.net>
  • Loading branch information
macinsight committed Nov 27, 2023
1 parent dbe96f5 commit b85f6bd
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
34 changes: 34 additions & 0 deletions git-conventional-commits.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
convention:
commitTypes:
- feat
- fix
- perf
- refactor
- style
- test
- build
- ops
- docs
- merge
commitScopes: []
releaseTagGlobPattern: v[0-9]*.[0-9]*.[0-9]*
changelog:
commitTypes:
- feat
- fix
- perf
- merge
includeInvalidCommits: true
commitScopes: []
commitIgnoreRegexPattern: "^WIP "
headlines:
feat: Features
fix: Bug Fixes
perf: Performance Improvements
merge: Merges
breakingChange: BREAKING CHANGES
commitUrl: https://github.com/qoomon/git-conventional-commits/commit/%commit%
commitRangeUrl: https://github.com/qoomon/git-conventional-commits/compare/%from%...%to%?diff=split
issueRegexPattern: "#[0-9]+"
issueUrl: https://github.com/qoomon/git-conventional-commits/issues/%issue%
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,28 @@ this.parts.ShotgunBarrel_20g = {}
this.parts.ShotgunBarrel_20g.CombinesWith = 'ShotgunReceiver_20g'
this.parts.ShotgunBarrel_20g.ConditionLowerChance = 3
this.parts.ShotgunBarrel_20g.ConditionMax = 20
this.parts.RifleLowerReceiver_308AR = {}
this.parts.RifleLowerReceiver_308AR.CombinesWith = 'RifleUpperReceiver_308AR'
this.parts.RifleLowerReceiver_308AR.ConditionLowerChance = 2
this.parts.RifleLowerReceiver_308AR.ConditionMax = 20
this.parts.RifleUpperReceiver_308AR = {}
this.parts.RifleUpperReceiver_308AR.CombinesWith = 'RifleLowerReceiver_308AR'
this.parts.RifleUpperReceiver_308AR.Holds = { 'RifleBoltCarrier_308AR' }
this.parts.RifleUpperReceiver_308AR.ConditionLowerChance = 2
this.parts.RifleUpperReceiver_308AR.ConditionMax = 20
this.parts.RifleBoltCarrier_308AR = {}
this.parts.RifleBoltCarrier_308AR.InsertsInto = 'RifleUpperReceiver_308AR'
this.parts.RifleBoltCarrier_308AR.Holds = { 'RifleFiringPin_308AR', 'RifleBolt_308AR' }
this.parts.RifleBoltCarrier_308AR.ConditionLowerChance = 3
this.parts.RifleBoltCarrier_308AR.ConditionMax = 20
this.parts.RifleFiringPin_308AR = {}
this.parts.RifleFiringPin_308AR.InsertsInto = 'RifleBoltCarrier_308AR'
this.parts.RifleFiringPin_308AR.ConditionLowerChance = 4
this.parts.RifleFiringPin_308AR.ConditionMax = 20
this.parts.RifleBolt_308AR = {}
this.parts.RifleBolt_308AR.InsertsInto = 'RifleBoltCarrier_308AR'
this.parts.RifleBolt_308AR.ConditionLowerChance = 2
this.parts.RifleBolt_308AR.ConditionMax = 20

this.getPartModel = function(modelName)
return this.parts[modelName]
Expand Down

0 comments on commit b85f6bd

Please sign in to comment.