western-world 3.0.621 → 3.0.623
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/defs/buble/buble.js +1 -1
- package/src/defs/fish/fish.js +17 -0
- package/src/defs/fish/fish.scss +38 -0
- package/src/patterns/elephant.pattern.js +14 -0
- package/src/scss/cells/item_amount_items48_buy.scss +1 -1
- package/src/scss/cells/shipwreck.scss +54 -1
- package/src/svg/cells/item_amount_items48_buy.svg +2 -1
- package/src/svg/cells/shipwreck.svg +330 -283
- package/src/svg/index.js +10 -1
package/src/svg/index.js
CHANGED
|
@@ -66,6 +66,8 @@ import { confetti } from '../defs/confetti/confetti';
|
|
|
66
66
|
import { add_star } from '../defs/add_star/add_star';
|
|
67
67
|
import { star } from '../defs/star';
|
|
68
68
|
import { simpleglitchfilter } from '../filters/simple-glitch-filter';
|
|
69
|
+
import { elephant_pattern } from '../patterns/elephant.pattern';
|
|
70
|
+
import { fish } from '../defs/fish/fish';
|
|
69
71
|
|
|
70
72
|
export const others = {
|
|
71
73
|
// backgrounds;
|
|
@@ -851,7 +853,10 @@ export const cells = {
|
|
|
851
853
|
item_amount_items48_buy: {
|
|
852
854
|
svg: require('./cells/item_amount_items48_buy.svg'),
|
|
853
855
|
css: require('!!css-loader!sass-loader!../scss/cells/item_amount_items48_buy.scss').default,
|
|
854
|
-
defs: [
|
|
856
|
+
defs: [
|
|
857
|
+
{ name: 'item_48', value: item_48, type: 'symbol_additional' },
|
|
858
|
+
{ name: 'elephant_pattern', value: elephant_pattern, type: 'pattern' },
|
|
859
|
+
],
|
|
855
860
|
},
|
|
856
861
|
item_amount_items48_sell: {
|
|
857
862
|
svg: require('./cells/item_amount_items48_sell.svg'),
|
|
@@ -1189,6 +1194,10 @@ export const cells = {
|
|
|
1189
1194
|
shipwreck: {
|
|
1190
1195
|
svg: require('./cells/shipwreck.svg'),
|
|
1191
1196
|
css: require('!!css-loader!sass-loader!../scss/cells/shipwreck.scss').default,
|
|
1197
|
+
defs: [
|
|
1198
|
+
{ name: 'fish', value: fish, type: 'symbol_additional' },
|
|
1199
|
+
{ name: 'buble', value: buble, type: 'symbol_additional' },
|
|
1200
|
+
],
|
|
1192
1201
|
},
|
|
1193
1202
|
shipyards: {
|
|
1194
1203
|
svg: require('./cells/shipyards.svg'),
|