Skip to content

Commit

Permalink
add kyurem legendary
Browse files Browse the repository at this point in the history
  • Loading branch information
keldaan-ag committed Oct 22, 2024
1 parent 847ea10 commit 5f54901
Show file tree
Hide file tree
Showing 58 changed files with 124 additions and 49 deletions.
114 changes: 84 additions & 30 deletions app/core/abilities/abilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,22 +91,26 @@ export class BlueFlareStrategy extends AbilityStrategy {
}
damage += multiplier * 20

const cells = board.getAdjacentCells(
target.positionX,
target.positionY,
true
)
cells.forEach((cell) => {
if (cell.value && cell.value.team !== pokemon.team) {
cell.value.handleSpecialDamage(
damage,
board,
AttackType.SPECIAL,
pokemon,
crit
pokemon.commands.push(
new DelayedCommand(() => {
const cells = board.getAdjacentCells(
target.positionX,
target.positionY,
true
)
}
})
cells.forEach((cell) => {
if (cell.value && cell.value.team !== pokemon.team) {
cell.value.handleSpecialDamage(
damage,
board,
AttackType.SPECIAL,
pokemon,
crit
)
}
})
}, 1000)
)
}
}

Expand All @@ -130,22 +134,71 @@ export class FusionBoltStrategy extends AbilityStrategy {
}
damage += multiplier * 40

const cells = board.getAdjacentCells(
target.positionX,
target.positionY,
true
pokemon.commands.push(
new DelayedCommand(() => {
const cells = board.getAdjacentCells(
target.positionX,
target.positionY,
true
)
cells.forEach((cell) => {
if (cell.value && cell.value.team !== pokemon.team) {
cell.value.handleSpecialDamage(
damage,
board,
AttackType.SPECIAL,
pokemon,
crit
)
}
})
}, 1000)
)
cells.forEach((cell) => {
if (cell.value && cell.value.team !== pokemon.team) {
cell.value.handleSpecialDamage(
damage,
board,
AttackType.SPECIAL,
pokemon,
crit
}
}

export class GlaciateStrategy extends AbilityStrategy {
process(
pokemon: PokemonEntity,
state: PokemonState,
board: Board,
target: PokemonEntity,
crit: boolean
) {
super.process(pokemon, state, board, target, crit)
let damage = 50
let multiplier = 0
if (pokemon.effects.has(Effect.CHILLY)) {
multiplier = 1
} else if (pokemon.effects.has(Effect.FROSTY)) {
multiplier = 2
} else if (pokemon.effects.has(Effect.FREEZING)) {
multiplier = 3
} else if (pokemon.effects.has(Effect.SHEER_COLD)) {
multiplier = 4
}
damage += multiplier * 20

pokemon.commands.push(
new DelayedCommand(() => {
const cells = board.getAdjacentCells(
target.positionX,
target.positionY,
true
)
}
})
cells.forEach((cell) => {
if (cell.value && cell.value.team !== pokemon.team) {
cell.value.handleSpecialDamage(
damage,
board,
AttackType.SPECIAL,
pokemon,
crit
)
}
})
}, 1000)
)
}
}

Expand Down Expand Up @@ -10802,5 +10855,6 @@ export const AbilityStrategies: { [key in Ability]: AbilityStrategy } = {
[Ability.BIDE]: new BideStrategy(),
[Ability.SHORE_UP]: new ShoreUpStrategy(),
[Ability.POISON_STING]: new PoisonStingStrategy(),
[Ability.TRANSE]: new TranseStrategy()
[Ability.TRANSE]: new TranseStrategy(),
[Ability.GLACIATE]: new GlaciateStrategy()
}
11 changes: 5 additions & 6 deletions app/models/colyseus-models/pokemon.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6095,15 +6095,14 @@ export class Kyurem extends Pokemon {
types = new SetSchema<Synergy>([Synergy.DRAGON, Synergy.ICE])
rarity = Rarity.LEGENDARY
stars = 3
hp = 300
hp = 200
atk = 30
def = 5
speDef = 5
def = 3
speDef = 6
maxPP = 100
range = 3
skill = Ability.DEFAULT //Ability.BLIZZARD
passive = Passive.NONE // Passive.SNOW
attackSprite = AttackSprite.FIRE_RANGE
skill = Ability.GLACIATE
attackSprite = AttackSprite.ICE_RANGE
}

export class Reshiram extends Pokemon {
Expand Down
2 changes: 1 addition & 1 deletion app/models/precomputed/credits.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/models/precomputed/emotions-per-pokemon-index.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/models/precomputed/pokemons-data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,7 @@ Index,Name,Category,Tier,Additional pick,Type 1,Type 2,Type 3,Type 4,HP,Attack,D
0643,RESHIRAM,LEGENDARY,3,false,DRAGON,FIRE,,,200,30,3,6,3,100,BLUE_FLARE,RESHIRAM,DRAGON,FIRE,,,false,false,3
0644,ZEKROM,LEGENDARY,3,false,DRAGON,ELECTRIC,,,200,30,3,6,3,100,FUSION_BOLT,ZEKROM,DRAGON,ELECTRIC,,,false,false,3
0645,LANDORUS,LEGENDARY,3,false,FLYING,GROUND,,,250,30,3,3,3,80,SANDSEAR_STORM,LANDORUS,FLYING,GROUND,,,false,false,3
0646,KYUREM,LEGENDARY,3,false,DRAGON,ICE,,,200,30,3,6,3,100,GLACIATE,KYUREM,DRAGON,ICE,,,false,false,3
0647,KELDEO,UNIQUE,3,false,WATER,FIGHTING,,,200,20,3,3,2,100,AQUA_JET,KELDEO,WATER,FIGHTING,,,false,false,3
0648,MELOETTA,LEGENDARY,3,false,NORMAL,SOUND,,,250,25,5,5,4,60,RELIC_SONG,MELOETTA,NORMAL,SOUND,FIGHTING,,false,false,3
0648-0001,PIROUETTE_MELOETTA,LEGENDARY,3,false,NORMAL,SOUND,FIGHTING,,250,25,5,5,1,90,U_TURN,MELOETTA,NORMAL,SOUND,FIGHTING,,false,false,3
Expand Down
4 changes: 3 additions & 1 deletion app/public/dist/client/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,8 @@
"BIDE": "Bide",
"SHORE_UP": "Shore Up",
"POISON_STING": "Poison Sting",
"TRANSE": "Transe"
"TRANSE": "Transe",
"GLACIATE": "Glaciate"
},
"pkm": {
"DEFAULT": "MissingNo.",
Expand Down Expand Up @@ -1359,6 +1360,7 @@
"BEAT_UP": "Summon [1,2,3] Houndour ([100,SP]% HP, no items)",
"BLUE_FLARE": "Inflicts [50,SP] SPECIAL + 20 per stage of FIRE synergy to the target and adjacent enemies",
"FUSION_BOLT": "Inflicts [50,SP] SPECIAL + 40 per stage of ELECTRIC synergy to the target and adjacent enemies",
"GLACIATE": "Inflicts [50,SP] SPECIAL + 20 per stage of ICE synergy to the target and adjacent enemies",
"AURORA_VEIL": "All allies receive [5,10,15,SP] SHIELD and RUNE_PROTECT for 0.5 seconds",
"AQUA_JET": "Dash into the enemy backline, dealing [30,60,120,SP] SPECIAL to all enemy hit",
"JUDGEMENT": "Inflicts [10,SP] special damage to the target, multiplied by the sum of Arceus synergy levels",
Expand Down
2 changes: 1 addition & 1 deletion app/public/dist/client/sw.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Change this cache name every time you want to force players
to invalidate their cache and download all assets again */

const CACHE_NAME = "CACHE v5.6.0.334"
const CACHE_NAME = "CACHE v5.6.0.337"

// Cache-first strategy
const cacheFirst = (event) => {
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion app/public/src/assets/atlas.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions app/public/src/assets/pokemons/0646.json

Large diffs are not rendered by default.

Binary file added app/public/src/assets/pokemons/0646.png
2 changes: 1 addition & 1 deletion app/public/src/assets/pokemons/durations.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/public/src/assets/pokemons/indexList.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["0000","0897","0129","0000-0004","0132","0001","0002","0003","0004","0005","0006","0007","0008","0009","0074","0075","0076","0298","0183","0184","0041","0042","0169","0179","0180","0181","0173","0035","0036","0174","0040","0039","0010","0011","0012","0013","0014","0015","0016","0017","0018","0187","0188","0189","0273","0274","0275","0396","0397","0398","0152","0153","0154","0155","0156","0157","0158","0159","0160","0252","0253","0254","0255","0256","0257","0258","0259","0260","0387","0388","0389","0390","0391","0392","0393","0394","0395","0029","0030","0031","0032","0033","0034","0172","0025","0026","0066","0067","0068","0116","0117","0230","0328","0329","0330","0363","0364","0365","0304","0305","0306","0081","0082","0462","0111","0112","0464","0175","0176","0468","0355","0356","0477","0270","0271","0272","0403","0404","0405","0060","0061","0186","0062","0063","0064","0065","0092","0093","0094","0147","0148","0149","0246","0247","0248","0287","0288","0289","0280","0281","0282","0371","0372","0373","0374","0375","0376","0443","0444","0445","0239","0125","0466","0240","0126","0467","0446","0143","0058","0059","0095","0208","0123","0212","0447","0448","0019","0020","0021","0022","0130","0249","0487","0145","0146","0144","0483","0484","0245","0243","0244","0378","0377","0379","0382","0383","0384","0486","0133","0134","0135","0136","0196","0197","0470","0700","0307","0308","0322","0323","0491","0607","0608","0609","0079","0080","0199","0069","0070","0071","0220","0221","0473","0361","0362","0478","0459","0460","0582","0583","0471","0637","0641","0647","0640","0638","0490","0479","0442","0359","0131","0380","0381","0481","0482","0480","0150","0643","0644","0251","0494","0385","0493","0386","0492","0488","0485","0250","0142","0382-0001","0052","0053","0633","0634","0635","0551","0577","0578","0579","0384-0001","0333","0043","0044","0045","0182","0698","0699","0347","0348","0566","0567","0410","0411","0345","0346","0408","0409","0140","0141","0138","0139","0406","0315","0407","0427","0428","0428-0001","0610","0611","0612","0137","0233","0474","0309","0310","0353","0354","0354-0001","0679","0680","0681","0104","0105","0105-0001","0293","0294","0295","0535","0536","0540","0541","0542","0669","0670","0671","0782","0783","0784","0648","0334","0351","0351-0001","0351-0002","0351-0003","0341","0342","0595","0596","0649","0369","0856","0857","0858","0653","0654","0655","0296","0297","0894","0895","0799","0890","0077","0078","0290","0291","0292","0714","0715","0710","0711","0331","0332","0128","0440","0113","0242","0785","0786","0805","0806","0228","0229","0229-0001","0366","0367","0368","0238","0124","0757","0758","0048","0049","0100","0101","0218","0219","0215","0461","0453","0454","0170","0171","0261","0262","0436","0437","0425","0426","0285","0286","0072","0073","0209","0210","0336","0037","0038","0037-0001","0038-0001","0418","0419","0303","0352","0703","0719","0441","0704","0705","0706","0151","0761","0762","0763","0721","0840","0842","0501","0502","0503","0872","0873","0320","0321","0885","0886","0495","0496","0497","0813","0814","0815","0728","0729","0730","0574","0575","0576","0027","0028","0083","0201","0201-0001","0201-0002","0201-0003","0201-0004","0201-0005","0201-0006","0201-0007","0201-0008","0201-0009","0201-0010","0201-0011","0201-0012","0201-0013","0201-0014","0201-0015","0201-0016","0201-0017","0201-0018","0201-0019","0201-0020","0201-0021","0201-0022","0201-0023","0201-0024","0201-0025","0201-0027","0201-0026","0788","0787","0050","0051","0722","0723","0724","0570","0571","0570-0002","0571-0001","0656","0658","0236","0106","0107","0237","0778","0088","0089","0088-0001","0089-0001","0318","0319","0204","0205","0086","0087","0074-0001","0075-0001","0076-0001","0023","0024","0439","0122","0487-0001","0648-0001","0720","0720-0001","0773","0772","0807","0716","0717","0802","0163","0164","0438","0185","0489","0415","0416","0213","0498","0499","0500","0360","0202","0337","0338","0492-0001","0265","0266","0267","0268","0269","0957","0958","0959","0046","0047","0241","0056","0057","0191","0192","0556","0312","0311","0127","0177","0178","0207","0472","0090","0091","0161","0162","0324","0225","0636","0991","0798","0433","0358","0026-0001","0781","0109","0110","0120","0121","0476","0299","0527","0528","0692","0693","0193","0469","0694","0695","0399","0400","0327","0343","0344","0214","0509","0510","0339","0340","0559","0560","0456","0457","0434","0435","0313","0314","0800","0420","0421","0421-0001","0200","0429","0084","0085","0796","0924","0925","0925-0001","0401","0402","0449","0450","0278","0279","0793","0817","0818","0816","0357","0102","0103","0103-0001","0455","0764","0211-0001","0904","0157-0001","0506","0507","0508","0263","0264","0584","0887","0302","0882","0795","0222","0222-0001","0864","0708","0709","0999-0001","1000","0235","0848","0849","0000-0001","0967","0624","0625","0983","0774","0774-0001","0774-0005","0774-0002","0774-0004","0779","0778-0001","0323-0001","0645","0642","0383-0001","0552","0545","0349","0350","0905","0877","0877-0001","0115","0216","0217","0190","0424","0585","0586","0108","0463","0504","0505","0167","0168","0773-0009","0773-0011","0773-0013","0773-0010","0773-0002","0773-0012","0773-0014","0773-0005","0773-0008","0773-0017","0773-0001","0773-0016","0773-0003","0773-0004","0773-0007","0773-0006","0773-0015","0537","0751","0752","0744","0745","0745-0002","0745-0001","0621","0792","0791","0790","0789","0800-0003","0801","0859","0860","0861","0386-0001","0386-0002","0386-0003","0739","0740","0742","0743","0335","0827","0828","0096","0097","0940","0941","0058-0001","0059-0001","0706-0001","0705-0001","0019-0001","0020-0001","0050-0001","0051-0001","0234","0412","0412-0001","0412-0002","0413","0413-0001","0413-0002","0414","0194-0002","0980","0909","0910","0911","0208-0001","0114","0465","0054","0055","0231","0232","0325","0326","0901","0901-0001","0854","0855","0597","0598","0622","0623","0568","0569","0422","0423","0422-0001","0423-0001","0517","0518","0900","0479-0008","0738","0736","0737","0696","0697","0639","0553","0543","0809","0657","0627","0628","0631","0707","0701","0619","0620","0874","0570-0001","0215-0001","0903","0803","0804","0845","0846","0921","0922","0923","0746","0746-0001","0310-0001","0771","0052-0001","0053-0001","0118","0119","0077-0001","0078-0001","0370","0531","0548","0549","0226","0458","0223","0224","0561","0996","0997","0998","0302-0001","0249-0001","0688","0689","0227","0632","1017","1017-0001","1017-0002","1017-0003","1017-0004","1017-0005","1017-0006","1017-0007","0992","0776","0769","0770","0451","0452","0681-0001","0554","0555","0555-0001"]
["0000","0897","0129","0000-0004","0132","0001","0002","0003","0004","0005","0006","0007","0008","0009","0074","0075","0076","0298","0183","0184","0041","0042","0169","0179","0180","0181","0173","0035","0036","0174","0040","0039","0010","0011","0012","0013","0014","0015","0016","0017","0018","0187","0188","0189","0273","0274","0275","0396","0397","0398","0152","0153","0154","0155","0156","0157","0158","0159","0160","0252","0253","0254","0255","0256","0257","0258","0259","0260","0387","0388","0389","0390","0391","0392","0393","0394","0395","0029","0030","0031","0032","0033","0034","0172","0025","0026","0066","0067","0068","0116","0117","0230","0328","0329","0330","0363","0364","0365","0304","0305","0306","0081","0082","0462","0111","0112","0464","0175","0176","0468","0355","0356","0477","0270","0271","0272","0403","0404","0405","0060","0061","0186","0062","0063","0064","0065","0092","0093","0094","0147","0148","0149","0246","0247","0248","0287","0288","0289","0280","0281","0282","0371","0372","0373","0374","0375","0376","0443","0444","0445","0239","0125","0466","0240","0126","0467","0446","0143","0058","0059","0095","0208","0123","0212","0447","0448","0019","0020","0021","0022","0130","0249","0487","0145","0146","0144","0483","0484","0245","0243","0244","0378","0377","0379","0382","0383","0384","0486","0133","0134","0135","0136","0196","0197","0470","0700","0307","0308","0322","0323","0491","0607","0608","0609","0079","0080","0199","0069","0070","0071","0220","0221","0473","0361","0362","0478","0459","0460","0582","0583","0471","0637","0641","0647","0640","0638","0490","0479","0442","0359","0131","0380","0381","0481","0482","0480","0150","0643","0644","0251","0494","0385","0493","0386","0492","0488","0485","0250","0142","0382-0001","0052","0053","0633","0634","0635","0551","0577","0578","0579","0384-0001","0333","0043","0044","0045","0182","0698","0699","0347","0348","0566","0567","0410","0411","0345","0346","0408","0409","0140","0141","0138","0139","0406","0315","0407","0427","0428","0428-0001","0610","0611","0612","0137","0233","0474","0309","0310","0353","0354","0354-0001","0679","0680","0681","0104","0105","0105-0001","0293","0294","0295","0535","0536","0540","0541","0542","0669","0670","0671","0782","0783","0784","0648","0334","0351","0351-0001","0351-0002","0351-0003","0341","0342","0595","0596","0649","0369","0856","0857","0858","0653","0654","0655","0296","0297","0894","0895","0799","0890","0077","0078","0290","0291","0292","0714","0715","0710","0711","0331","0332","0128","0440","0113","0242","0785","0786","0805","0806","0228","0229","0229-0001","0366","0367","0368","0238","0124","0757","0758","0048","0049","0100","0101","0218","0219","0215","0461","0453","0454","0170","0171","0261","0262","0436","0437","0425","0426","0285","0286","0072","0073","0209","0210","0336","0037","0038","0037-0001","0038-0001","0418","0419","0303","0352","0703","0719","0441","0704","0705","0706","0151","0761","0762","0763","0721","0840","0842","0501","0502","0503","0872","0873","0320","0321","0885","0886","0495","0496","0497","0813","0814","0815","0728","0729","0730","0574","0575","0576","0027","0028","0083","0201","0201-0001","0201-0002","0201-0003","0201-0004","0201-0005","0201-0006","0201-0007","0201-0008","0201-0009","0201-0010","0201-0011","0201-0012","0201-0013","0201-0014","0201-0015","0201-0016","0201-0017","0201-0018","0201-0019","0201-0020","0201-0021","0201-0022","0201-0023","0201-0024","0201-0025","0201-0027","0201-0026","0788","0787","0050","0051","0722","0723","0724","0570","0571","0570-0002","0571-0001","0656","0658","0236","0106","0107","0237","0778","0088","0089","0088-0001","0089-0001","0318","0319","0204","0205","0086","0087","0074-0001","0075-0001","0076-0001","0023","0024","0439","0122","0487-0001","0648-0001","0720","0720-0001","0773","0772","0807","0716","0717","0802","0163","0164","0438","0185","0489","0415","0416","0213","0498","0499","0500","0360","0202","0337","0338","0492-0001","0265","0266","0267","0268","0269","0957","0958","0959","0046","0047","0241","0056","0057","0191","0192","0556","0312","0311","0127","0177","0178","0207","0472","0090","0091","0161","0162","0324","0225","0636","0991","0798","0433","0358","0026-0001","0781","0109","0110","0120","0121","0476","0299","0527","0528","0692","0693","0193","0469","0694","0695","0399","0400","0327","0343","0344","0214","0509","0510","0339","0340","0559","0560","0456","0457","0434","0435","0313","0314","0800","0420","0421","0421-0001","0200","0429","0084","0085","0796","0924","0925","0925-0001","0401","0402","0449","0450","0278","0279","0793","0817","0818","0816","0357","0102","0103","0103-0001","0455","0764","0211-0001","0904","0157-0001","0506","0507","0508","0263","0264","0584","0887","0302","0882","0795","0222","0222-0001","0864","0708","0709","0999-0001","1000","0235","0848","0849","0000-0001","0967","0624","0625","0983","0774","0774-0001","0774-0005","0774-0002","0774-0004","0779","0778-0001","0323-0001","0645","0642","0383-0001","0552","0545","0349","0350","0905","0877","0877-0001","0115","0216","0217","0190","0424","0585","0586","0108","0463","0504","0505","0167","0168","0773-0009","0773-0011","0773-0013","0773-0010","0773-0002","0773-0012","0773-0014","0773-0005","0773-0008","0773-0017","0773-0001","0773-0016","0773-0003","0773-0004","0773-0007","0773-0006","0773-0015","0537","0751","0752","0744","0745","0745-0002","0745-0001","0621","0792","0791","0790","0789","0800-0003","0801","0859","0860","0861","0386-0001","0386-0002","0386-0003","0739","0740","0742","0743","0335","0827","0828","0096","0097","0940","0941","0058-0001","0059-0001","0706-0001","0705-0001","0019-0001","0020-0001","0050-0001","0051-0001","0234","0412","0412-0001","0412-0002","0413","0413-0001","0413-0002","0414","0194-0002","0980","0909","0910","0911","0208-0001","0114","0465","0054","0055","0231","0232","0325","0326","0901","0901-0001","0854","0855","0597","0598","0622","0623","0568","0569","0422","0423","0422-0001","0423-0001","0517","0518","0900","0479-0008","0738","0736","0737","0696","0697","0639","0553","0543","0809","0657","0627","0628","0631","0707","0701","0619","0620","0874","0570-0001","0215-0001","0903","0803","0804","0845","0846","0921","0922","0923","0746","0746-0001","0310-0001","0771","0052-0001","0053-0001","0118","0119","0077-0001","0078-0001","0370","0531","0548","0549","0226","0458","0223","0224","0561","0996","0997","0998","0302-0001","0249-0001","0688","0689","0227","0632","1017","1017-0001","1017-0002","1017-0003","1017-0004","1017-0005","1017-0006","1017-0007","0992","0776","0769","0770","0451","0452","0681-0001","0554","0555","0555-0001","0646"]
Loading

0 comments on commit 5f54901

Please sign in to comment.