mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-10-31 16:57:54 +00:00
11 lines
447 B
Python
11 lines
447 B
Python
|
from toontown.toonbase.ToontownGlobals import *
|
||
|
from toontown.coghq import MintProduct
|
||
|
|
||
|
class MintProductPallet(MintProduct.MintProduct):
|
||
|
Models = {CashbotMintIntA: 'phase_10/models/cashbotHQ/DoubleCoinStack.bam',
|
||
|
CashbotMintIntB: 'phase_10/models/cogHQ/DoubleMoneyStack.bam',
|
||
|
CashbotMintIntC: 'phase_10/models/cashbotHQ/DoubleGoldStack.bam'}
|
||
|
Scales = {CashbotMintIntA: 1.0,
|
||
|
CashbotMintIntB: 1.0,
|
||
|
CashbotMintIntC: 1.0}
|