├── .gitattributes ├── Animals ├── Lion │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── pets │ │ │ └── animals │ │ │ └── lion │ │ │ ├── lionm_skin.vmt │ │ │ ├── lionm_skin.vtf │ │ │ └── lionm_skin_bump.vtf │ ├── models │ │ └── htconfigs │ │ │ └── pets │ │ │ └── animals │ │ │ ├── lion.dx90.vtx │ │ │ ├── lion.mdl │ │ │ └── lion.vvd │ └── paths.txt ├── Lynx │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── pets │ │ │ └── animals │ │ │ └── lynx │ │ │ ├── lynx_skin.vmt │ │ │ ├── lynx_skin.vtf │ │ │ └── lynx_skin_bump.vtf │ ├── models │ │ └── htconfigs │ │ │ └── pets │ │ │ └── animals │ │ │ ├── lynx.dx90.vtx │ │ │ ├── lynx.mdl │ │ │ └── lynx.vvd │ └── paths.txt ├── Monkey │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── pets │ │ │ └── animals │ │ │ └── monkey │ │ │ ├── monkey_skin.vmt │ │ │ ├── monkey_skin.vtf │ │ │ └── monkey_skin_bump.vtf │ ├── models │ │ └── htconfigs │ │ │ └── pets │ │ │ └── animals │ │ │ ├── monkey.dx90.vtx │ │ │ ├── monkey.mdl │ │ │ └── monkey.vvd │ └── paths.txt ├── README.md └── Turtle │ ├── materials │ └── models │ │ └── htconfigs │ │ └── pets │ │ └── animals │ │ └── turtle │ │ ├── turtle_skin.vmt │ │ ├── turtle_skin.vtf │ │ └── turtle_skin_bump.vtf │ ├── models │ └── htconfigs │ │ └── pets │ │ └── animals │ │ ├── turtle.dx90.vtx │ │ ├── turtle.mdl │ │ └── turtle.vvd │ └── paths.txt ├── Dinosaurs └── Dromeaosaur │ ├── README.md │ ├── materials │ └── models │ │ └── htconfigs │ │ └── pets │ │ └── dinosaur │ │ └── dromeaosaur │ │ ├── dromeo.vmt │ │ └── dromeo.vtf │ ├── models │ └── htconfigs │ │ └── pets │ │ └── dinosaur │ │ ├── dromeaosaur.dx90.vtx │ │ ├── dromeaosaur.mdl │ │ └── dromeaosaur.vvd │ └── paths.txt ├── Flags ├── Argentina │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── flags │ │ │ └── argentina │ │ │ ├── argentina.vmt │ │ │ └── argentina.vtf │ ├── models │ │ └── htconfigs │ │ │ └── flags │ │ │ ├── argentina.dx90.vtx │ │ │ ├── argentina.mdl │ │ │ ├── argentina.phy │ │ │ └── argentina.vvd │ └── paths.txt ├── Australia │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── flags │ │ │ └── australia │ │ │ ├── australia.vmt │ │ │ ├── australia.vtf │ │ │ └── australia_blue.vmt │ ├── models │ │ └── htconfigs │ │ │ └── flags │ │ │ ├── australia.dx90.vtx │ │ │ ├── australia.mdl │ │ │ ├── australia.phy │ │ │ └── australia.vvd │ └── paths.txt ├── Canada │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── flags │ │ │ └── canada │ │ │ ├── canada.vmt │ │ │ └── canada.vtf │ ├── models │ │ └── htconfigs │ │ │ └── flags │ │ │ ├── canada.dx90.vtx │ │ │ ├── canada.mdl │ │ │ ├── canada.phy │ │ │ └── canada.vvd │ └── paths.txt ├── Poland #2 │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── flags │ │ │ └── poland │ │ │ ├── poland_2.vmt │ │ │ ├── poland_2.vtf │ │ │ └── poland_2_blue.vmt │ ├── models │ │ └── htconfigs │ │ │ └── flags │ │ │ ├── poland_2.dx90.vtx │ │ │ ├── poland_2.mdl │ │ │ ├── poland_2.phy │ │ │ └── poland_2.vvd │ └── paths.txt ├── Poland │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── flags │ │ │ └── poland │ │ │ ├── poland_1.vmt │ │ │ ├── poland_1.vtf │ │ │ └── poland_1_blue.vmt │ ├── models │ │ └── htconfigs │ │ │ └── flags │ │ │ ├── poland_1.dx90.vtx │ │ │ ├── poland_1.mdl │ │ │ ├── poland_1.phy │ │ │ └── poland_1.vvd │ └── paths.txt ├── Portugal │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── flags │ │ │ └── portugal │ │ │ ├── portugal.vmt │ │ │ ├── portugal.vtf │ │ │ └── portugal_blue.vmt │ ├── models │ │ └── htconfigs │ │ │ └── flags │ │ │ ├── portugal.dx90.vtx │ │ │ ├── portugal.mdl │ │ │ ├── portugal.phy │ │ │ └── portugal.vvd │ └── paths.txt ├── README.md ├── Russia │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── flags │ │ │ └── russia │ │ │ ├── russia.vmt │ │ │ ├── russia.vtf │ │ │ └── russia_blue.vmt │ ├── models │ │ └── htconfigs │ │ │ └── flags │ │ │ ├── russia.dx90.vtx │ │ │ ├── russia.mdl │ │ │ ├── russia.phy │ │ │ └── russia.vvd │ └── paths.txt ├── Spain │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── flags │ │ │ └── spain │ │ │ ├── spain.vmt │ │ │ └── spain.vtf │ ├── models │ │ └── htconfigs │ │ │ └── flags │ │ │ ├── spain.dx90.vtx │ │ │ ├── spain.mdl │ │ │ ├── spain.phy │ │ │ └── spain.vvd │ └── paths.txt ├── United Kingdom │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── flags │ │ │ └── uk │ │ │ ├── uk.vmt │ │ │ └── uk.vtf │ ├── models │ │ └── htconfigs │ │ │ └── flags │ │ │ ├── uk.dx90.vtx │ │ │ ├── uk.mdl │ │ │ ├── uk.phy │ │ │ └── uk.vvd │ └── paths.txt └── United States of America │ ├── materials │ └── models │ │ └── htconfigs │ │ └── flags │ │ └── usa │ │ ├── usa.vmt │ │ ├── usa.vtf │ │ └── usa_blue.vmt │ ├── models │ └── htconfigs │ │ └── flags │ │ ├── usa.dx90.vtx │ │ ├── usa.mdl │ │ ├── usa.phy │ │ └── usa.vvd │ └── paths.txt ├── Pokémon ├── Jolteon │ ├── materials │ │ └── models │ │ │ └── pets │ │ │ └── pokemon │ │ │ └── jolteon │ │ │ ├── Thunders.vmt │ │ │ ├── Thunders.vtf │ │ │ ├── ThundersEye.vtf │ │ │ ├── ThundersEye1.vmt │ │ │ ├── ThundersEye1_Shiny.vmt │ │ │ ├── ThundersEye2.vmt │ │ │ ├── ThundersEye2_Shiny.vmt │ │ │ ├── ThundersEye3.vmt │ │ │ ├── ThundersEye3_Shiny.vmt │ │ │ ├── ThundersEye4.vmt │ │ │ ├── ThundersEye4_Shiny.vmt │ │ │ ├── ThundersEye5.vmt │ │ │ ├── ThundersEye5_Shiny.vmt │ │ │ ├── ThundersEye6.vmt │ │ │ ├── ThundersEye6_Shiny.vmt │ │ │ ├── ThundersEye7.vmt │ │ │ ├── ThundersEye7_Shiny.vmt │ │ │ ├── ThundersEye_Shiny.vtf │ │ │ ├── Thunders_Shiny.vmt │ │ │ └── Thunders_Shiny.vtf │ ├── models │ │ └── pets │ │ │ └── pokemon │ │ │ ├── jolteon.dx90.vtx │ │ │ ├── jolteon.mdl │ │ │ └── jolteon.vvd │ └── paths.txt ├── README.md ├── Umbreon │ ├── materials │ │ └── models │ │ │ └── htconfigs │ │ │ └── pets │ │ │ └── pokemon │ │ │ └── umbreon │ │ │ ├── Blacky.vmt │ │ │ ├── Blacky.vtf │ │ │ ├── BlackyEye.vtf │ │ │ ├── BlackyEye1.vmt │ │ │ ├── BlackyEye1_Illum.vmt │ │ │ ├── BlackyEye1_Shiny.vmt │ │ │ ├── BlackyEye1_ShinyIllum.vmt │ │ │ ├── BlackyEye2.vmt │ │ │ ├── BlackyEye2_Illum.vmt │ │ │ ├── BlackyEye2_Shiny.vmt │ │ │ ├── BlackyEye2_ShinyIllum.vmt │ │ │ ├── BlackyEye3.vmt │ │ │ ├── BlackyEye3_Shiny.vmt │ │ │ ├── BlackyEye4.vmt │ │ │ ├── BlackyEye4_Shiny.vmt │ │ │ ├── BlackyEye5.vmt │ │ │ ├── BlackyEye5_Illum.vmt │ │ │ ├── BlackyEye5_Shiny.vmt │ │ │ ├── BlackyEye5_ShinyIllum.vmt │ │ │ ├── BlackyEye6.vmt │ │ │ ├── BlackyEye6_Shiny.vmt │ │ │ ├── BlackyEye7.vmt │ │ │ ├── BlackyEye7_Illum.vmt │ │ │ ├── BlackyEye7_Shiny.vmt │ │ │ ├── BlackyEye7_ShinyIllum.vmt │ │ │ ├── BlackyEye8.vmt │ │ │ ├── BlackyEye8_Illum.vmt │ │ │ ├── BlackyEye8_Shiny.vmt │ │ │ ├── BlackyEye8_ShinyIllum.vmt │ │ │ ├── BlackyEye_Illum.vtf │ │ │ ├── BlackyEye_Shiny.vtf │ │ │ ├── BlackyEye_ShinyIllum.vtf │ │ │ ├── BlackyMouth.vtf │ │ │ ├── BlackyMouth1.vmt │ │ │ ├── BlackyMouth1_Shiny.vmt │ │ │ ├── BlackyMouth2.vmt │ │ │ ├── BlackyMouth2_Shiny.vmt │ │ │ ├── BlackyMouth3.vmt │ │ │ ├── BlackyMouth3_Shiny.vmt │ │ │ ├── BlackyMouth4.vmt │ │ │ ├── BlackyMouth4_Shiny.vmt │ │ │ ├── BlackyMouth_Shiny.vtf │ │ │ ├── Blacky_Illum.vmt │ │ │ ├── Blacky_Illum.vtf │ │ │ ├── Blacky_Shiny.vmt │ │ │ ├── Blacky_Shiny.vtf │ │ │ ├── Blacky_ShinyIllum.vmt │ │ │ └── Blacky_ShinyIllum.vtf │ ├── models │ │ └── htconfigs │ │ │ └── pets │ │ │ └── pokemon │ │ │ ├── umbreon.dx90.vtx │ │ │ ├── umbreon.mdl │ │ │ └── umbreon.vvd │ └── paths.txt └── Vaporeon │ ├── materials │ └── models │ │ └── pets │ │ └── pokemon │ │ └── vaporeon │ │ ├── Showers.vmt │ │ ├── Showers.vtf │ │ ├── ShowersEye.vtf │ │ ├── ShowersEye1.vmt │ │ ├── ShowersEye1_Shiny.vmt │ │ ├── ShowersEye2.vmt │ │ ├── ShowersEye2_Shiny.vmt │ │ ├── ShowersEye3.vmt │ │ ├── ShowersEye3_Shiny.vmt │ │ ├── ShowersEye4.vmt │ │ ├── ShowersEye4_Shiny.vmt │ │ ├── ShowersEye5.vmt │ │ ├── ShowersEye5_Shiny.vmt │ │ ├── ShowersEye6.vmt │ │ ├── ShowersEye6_Shiny.vmt │ │ ├── ShowersEye7.vmt │ │ ├── ShowersEye7_Shiny.vmt │ │ ├── ShowersEye_Shiny.vtf │ │ ├── ShowersFillet.vmt │ │ ├── ShowersFillet.vtf │ │ ├── ShowersFillet_Shiny.vmt │ │ ├── ShowersFillet_Shiny.vtf │ │ ├── ShowersMouth.vtf │ │ ├── ShowersMouth1.vmt │ │ ├── ShowersMouth1_Shiny.vmt │ │ ├── ShowersMouth2.vmt │ │ ├── ShowersMouth2_Shiny.vmt │ │ ├── ShowersMouth3.vmt │ │ ├── ShowersMouth3_Shiny.vmt │ │ ├── ShowersMouth4.vmt │ │ ├── ShowersMouth4_Shiny.vmt │ │ ├── ShowersMouth_Shiny.vtf │ │ ├── Showers_Shiny.vmt │ │ └── Showers_Shiny.vtf │ ├── models │ └── pets │ │ └── pokemon │ │ ├── vaporeon.dx90.vtx │ │ ├── vaporeon.mdl │ │ └── vaporeon.vvd │ └── paths.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/.gitattributes -------------------------------------------------------------------------------- /Animals/Lion/materials/models/htconfigs/pets/animals/lion/lionm_skin.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lion/materials/models/htconfigs/pets/animals/lion/lionm_skin.vmt -------------------------------------------------------------------------------- /Animals/Lion/materials/models/htconfigs/pets/animals/lion/lionm_skin.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lion/materials/models/htconfigs/pets/animals/lion/lionm_skin.vtf -------------------------------------------------------------------------------- /Animals/Lion/materials/models/htconfigs/pets/animals/lion/lionm_skin_bump.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lion/materials/models/htconfigs/pets/animals/lion/lionm_skin_bump.vtf -------------------------------------------------------------------------------- /Animals/Lion/models/htconfigs/pets/animals/lion.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lion/models/htconfigs/pets/animals/lion.dx90.vtx -------------------------------------------------------------------------------- /Animals/Lion/models/htconfigs/pets/animals/lion.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lion/models/htconfigs/pets/animals/lion.mdl -------------------------------------------------------------------------------- /Animals/Lion/models/htconfigs/pets/animals/lion.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lion/models/htconfigs/pets/animals/lion.vvd -------------------------------------------------------------------------------- /Animals/Lion/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lion/paths.txt -------------------------------------------------------------------------------- /Animals/Lynx/materials/models/htconfigs/pets/animals/lynx/lynx_skin.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lynx/materials/models/htconfigs/pets/animals/lynx/lynx_skin.vmt -------------------------------------------------------------------------------- /Animals/Lynx/materials/models/htconfigs/pets/animals/lynx/lynx_skin.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lynx/materials/models/htconfigs/pets/animals/lynx/lynx_skin.vtf -------------------------------------------------------------------------------- /Animals/Lynx/materials/models/htconfigs/pets/animals/lynx/lynx_skin_bump.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lynx/materials/models/htconfigs/pets/animals/lynx/lynx_skin_bump.vtf -------------------------------------------------------------------------------- /Animals/Lynx/models/htconfigs/pets/animals/lynx.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lynx/models/htconfigs/pets/animals/lynx.dx90.vtx -------------------------------------------------------------------------------- /Animals/Lynx/models/htconfigs/pets/animals/lynx.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lynx/models/htconfigs/pets/animals/lynx.mdl -------------------------------------------------------------------------------- /Animals/Lynx/models/htconfigs/pets/animals/lynx.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lynx/models/htconfigs/pets/animals/lynx.vvd -------------------------------------------------------------------------------- /Animals/Lynx/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Lynx/paths.txt -------------------------------------------------------------------------------- /Animals/Monkey/materials/models/htconfigs/pets/animals/monkey/monkey_skin.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Monkey/materials/models/htconfigs/pets/animals/monkey/monkey_skin.vmt -------------------------------------------------------------------------------- /Animals/Monkey/materials/models/htconfigs/pets/animals/monkey/monkey_skin.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Monkey/materials/models/htconfigs/pets/animals/monkey/monkey_skin.vtf -------------------------------------------------------------------------------- /Animals/Monkey/materials/models/htconfigs/pets/animals/monkey/monkey_skin_bump.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Monkey/materials/models/htconfigs/pets/animals/monkey/monkey_skin_bump.vtf -------------------------------------------------------------------------------- /Animals/Monkey/models/htconfigs/pets/animals/monkey.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Monkey/models/htconfigs/pets/animals/monkey.dx90.vtx -------------------------------------------------------------------------------- /Animals/Monkey/models/htconfigs/pets/animals/monkey.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Monkey/models/htconfigs/pets/animals/monkey.mdl -------------------------------------------------------------------------------- /Animals/Monkey/models/htconfigs/pets/animals/monkey.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Monkey/models/htconfigs/pets/animals/monkey.vvd -------------------------------------------------------------------------------- /Animals/Monkey/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Monkey/paths.txt -------------------------------------------------------------------------------- /Animals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/README.md -------------------------------------------------------------------------------- /Animals/Turtle/materials/models/htconfigs/pets/animals/turtle/turtle_skin.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Turtle/materials/models/htconfigs/pets/animals/turtle/turtle_skin.vmt -------------------------------------------------------------------------------- /Animals/Turtle/materials/models/htconfigs/pets/animals/turtle/turtle_skin.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Turtle/materials/models/htconfigs/pets/animals/turtle/turtle_skin.vtf -------------------------------------------------------------------------------- /Animals/Turtle/materials/models/htconfigs/pets/animals/turtle/turtle_skin_bump.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Turtle/materials/models/htconfigs/pets/animals/turtle/turtle_skin_bump.vtf -------------------------------------------------------------------------------- /Animals/Turtle/models/htconfigs/pets/animals/turtle.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Turtle/models/htconfigs/pets/animals/turtle.dx90.vtx -------------------------------------------------------------------------------- /Animals/Turtle/models/htconfigs/pets/animals/turtle.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Turtle/models/htconfigs/pets/animals/turtle.mdl -------------------------------------------------------------------------------- /Animals/Turtle/models/htconfigs/pets/animals/turtle.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Turtle/models/htconfigs/pets/animals/turtle.vvd -------------------------------------------------------------------------------- /Animals/Turtle/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Animals/Turtle/paths.txt -------------------------------------------------------------------------------- /Dinosaurs/Dromeaosaur/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Dinosaurs/Dromeaosaur/README.md -------------------------------------------------------------------------------- /Dinosaurs/Dromeaosaur/materials/models/htconfigs/pets/dinosaur/dromeaosaur/dromeo.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Dinosaurs/Dromeaosaur/materials/models/htconfigs/pets/dinosaur/dromeaosaur/dromeo.vmt -------------------------------------------------------------------------------- /Dinosaurs/Dromeaosaur/materials/models/htconfigs/pets/dinosaur/dromeaosaur/dromeo.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Dinosaurs/Dromeaosaur/materials/models/htconfigs/pets/dinosaur/dromeaosaur/dromeo.vtf -------------------------------------------------------------------------------- /Dinosaurs/Dromeaosaur/models/htconfigs/pets/dinosaur/dromeaosaur.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Dinosaurs/Dromeaosaur/models/htconfigs/pets/dinosaur/dromeaosaur.dx90.vtx -------------------------------------------------------------------------------- /Dinosaurs/Dromeaosaur/models/htconfigs/pets/dinosaur/dromeaosaur.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Dinosaurs/Dromeaosaur/models/htconfigs/pets/dinosaur/dromeaosaur.mdl -------------------------------------------------------------------------------- /Dinosaurs/Dromeaosaur/models/htconfigs/pets/dinosaur/dromeaosaur.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Dinosaurs/Dromeaosaur/models/htconfigs/pets/dinosaur/dromeaosaur.vvd -------------------------------------------------------------------------------- /Dinosaurs/Dromeaosaur/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Dinosaurs/Dromeaosaur/paths.txt -------------------------------------------------------------------------------- /Flags/Argentina/materials/models/htconfigs/flags/argentina/argentina.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Argentina/materials/models/htconfigs/flags/argentina/argentina.vmt -------------------------------------------------------------------------------- /Flags/Argentina/materials/models/htconfigs/flags/argentina/argentina.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Argentina/materials/models/htconfigs/flags/argentina/argentina.vtf -------------------------------------------------------------------------------- /Flags/Argentina/models/htconfigs/flags/argentina.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Argentina/models/htconfigs/flags/argentina.dx90.vtx -------------------------------------------------------------------------------- /Flags/Argentina/models/htconfigs/flags/argentina.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Argentina/models/htconfigs/flags/argentina.mdl -------------------------------------------------------------------------------- /Flags/Argentina/models/htconfigs/flags/argentina.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Argentina/models/htconfigs/flags/argentina.phy -------------------------------------------------------------------------------- /Flags/Argentina/models/htconfigs/flags/argentina.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Argentina/models/htconfigs/flags/argentina.vvd -------------------------------------------------------------------------------- /Flags/Argentina/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Argentina/paths.txt -------------------------------------------------------------------------------- /Flags/Australia/materials/models/htconfigs/flags/australia/australia.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Australia/materials/models/htconfigs/flags/australia/australia.vmt -------------------------------------------------------------------------------- /Flags/Australia/materials/models/htconfigs/flags/australia/australia.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Australia/materials/models/htconfigs/flags/australia/australia.vtf -------------------------------------------------------------------------------- /Flags/Australia/materials/models/htconfigs/flags/australia/australia_blue.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Australia/materials/models/htconfigs/flags/australia/australia_blue.vmt -------------------------------------------------------------------------------- /Flags/Australia/models/htconfigs/flags/australia.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Australia/models/htconfigs/flags/australia.dx90.vtx -------------------------------------------------------------------------------- /Flags/Australia/models/htconfigs/flags/australia.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Australia/models/htconfigs/flags/australia.mdl -------------------------------------------------------------------------------- /Flags/Australia/models/htconfigs/flags/australia.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Australia/models/htconfigs/flags/australia.phy -------------------------------------------------------------------------------- /Flags/Australia/models/htconfigs/flags/australia.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Australia/models/htconfigs/flags/australia.vvd -------------------------------------------------------------------------------- /Flags/Australia/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Australia/paths.txt -------------------------------------------------------------------------------- /Flags/Canada/materials/models/htconfigs/flags/canada/canada.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Canada/materials/models/htconfigs/flags/canada/canada.vmt -------------------------------------------------------------------------------- /Flags/Canada/materials/models/htconfigs/flags/canada/canada.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Canada/materials/models/htconfigs/flags/canada/canada.vtf -------------------------------------------------------------------------------- /Flags/Canada/models/htconfigs/flags/canada.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Canada/models/htconfigs/flags/canada.dx90.vtx -------------------------------------------------------------------------------- /Flags/Canada/models/htconfigs/flags/canada.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Canada/models/htconfigs/flags/canada.mdl -------------------------------------------------------------------------------- /Flags/Canada/models/htconfigs/flags/canada.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Canada/models/htconfigs/flags/canada.phy -------------------------------------------------------------------------------- /Flags/Canada/models/htconfigs/flags/canada.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Canada/models/htconfigs/flags/canada.vvd -------------------------------------------------------------------------------- /Flags/Canada/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Canada/paths.txt -------------------------------------------------------------------------------- /Flags/Poland #2/materials/models/htconfigs/flags/poland/poland_2.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland #2/materials/models/htconfigs/flags/poland/poland_2.vmt -------------------------------------------------------------------------------- /Flags/Poland #2/materials/models/htconfigs/flags/poland/poland_2.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland #2/materials/models/htconfigs/flags/poland/poland_2.vtf -------------------------------------------------------------------------------- /Flags/Poland #2/materials/models/htconfigs/flags/poland/poland_2_blue.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland #2/materials/models/htconfigs/flags/poland/poland_2_blue.vmt -------------------------------------------------------------------------------- /Flags/Poland #2/models/htconfigs/flags/poland_2.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland #2/models/htconfigs/flags/poland_2.dx90.vtx -------------------------------------------------------------------------------- /Flags/Poland #2/models/htconfigs/flags/poland_2.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland #2/models/htconfigs/flags/poland_2.mdl -------------------------------------------------------------------------------- /Flags/Poland #2/models/htconfigs/flags/poland_2.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland #2/models/htconfigs/flags/poland_2.phy -------------------------------------------------------------------------------- /Flags/Poland #2/models/htconfigs/flags/poland_2.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland #2/models/htconfigs/flags/poland_2.vvd -------------------------------------------------------------------------------- /Flags/Poland #2/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland #2/paths.txt -------------------------------------------------------------------------------- /Flags/Poland/materials/models/htconfigs/flags/poland/poland_1.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland/materials/models/htconfigs/flags/poland/poland_1.vmt -------------------------------------------------------------------------------- /Flags/Poland/materials/models/htconfigs/flags/poland/poland_1.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland/materials/models/htconfigs/flags/poland/poland_1.vtf -------------------------------------------------------------------------------- /Flags/Poland/materials/models/htconfigs/flags/poland/poland_1_blue.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland/materials/models/htconfigs/flags/poland/poland_1_blue.vmt -------------------------------------------------------------------------------- /Flags/Poland/models/htconfigs/flags/poland_1.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland/models/htconfigs/flags/poland_1.dx90.vtx -------------------------------------------------------------------------------- /Flags/Poland/models/htconfigs/flags/poland_1.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland/models/htconfigs/flags/poland_1.mdl -------------------------------------------------------------------------------- /Flags/Poland/models/htconfigs/flags/poland_1.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland/models/htconfigs/flags/poland_1.phy -------------------------------------------------------------------------------- /Flags/Poland/models/htconfigs/flags/poland_1.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland/models/htconfigs/flags/poland_1.vvd -------------------------------------------------------------------------------- /Flags/Poland/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Poland/paths.txt -------------------------------------------------------------------------------- /Flags/Portugal/materials/models/htconfigs/flags/portugal/portugal.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Portugal/materials/models/htconfigs/flags/portugal/portugal.vmt -------------------------------------------------------------------------------- /Flags/Portugal/materials/models/htconfigs/flags/portugal/portugal.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Portugal/materials/models/htconfigs/flags/portugal/portugal.vtf -------------------------------------------------------------------------------- /Flags/Portugal/materials/models/htconfigs/flags/portugal/portugal_blue.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Portugal/materials/models/htconfigs/flags/portugal/portugal_blue.vmt -------------------------------------------------------------------------------- /Flags/Portugal/models/htconfigs/flags/portugal.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Portugal/models/htconfigs/flags/portugal.dx90.vtx -------------------------------------------------------------------------------- /Flags/Portugal/models/htconfigs/flags/portugal.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Portugal/models/htconfigs/flags/portugal.mdl -------------------------------------------------------------------------------- /Flags/Portugal/models/htconfigs/flags/portugal.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Portugal/models/htconfigs/flags/portugal.phy -------------------------------------------------------------------------------- /Flags/Portugal/models/htconfigs/flags/portugal.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Portugal/models/htconfigs/flags/portugal.vvd -------------------------------------------------------------------------------- /Flags/Portugal/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Portugal/paths.txt -------------------------------------------------------------------------------- /Flags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/README.md -------------------------------------------------------------------------------- /Flags/Russia/materials/models/htconfigs/flags/russia/russia.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Russia/materials/models/htconfigs/flags/russia/russia.vmt -------------------------------------------------------------------------------- /Flags/Russia/materials/models/htconfigs/flags/russia/russia.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Russia/materials/models/htconfigs/flags/russia/russia.vtf -------------------------------------------------------------------------------- /Flags/Russia/materials/models/htconfigs/flags/russia/russia_blue.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Russia/materials/models/htconfigs/flags/russia/russia_blue.vmt -------------------------------------------------------------------------------- /Flags/Russia/models/htconfigs/flags/russia.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Russia/models/htconfigs/flags/russia.dx90.vtx -------------------------------------------------------------------------------- /Flags/Russia/models/htconfigs/flags/russia.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Russia/models/htconfigs/flags/russia.mdl -------------------------------------------------------------------------------- /Flags/Russia/models/htconfigs/flags/russia.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Russia/models/htconfigs/flags/russia.phy -------------------------------------------------------------------------------- /Flags/Russia/models/htconfigs/flags/russia.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Russia/models/htconfigs/flags/russia.vvd -------------------------------------------------------------------------------- /Flags/Russia/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Russia/paths.txt -------------------------------------------------------------------------------- /Flags/Spain/materials/models/htconfigs/flags/spain/spain.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Spain/materials/models/htconfigs/flags/spain/spain.vmt -------------------------------------------------------------------------------- /Flags/Spain/materials/models/htconfigs/flags/spain/spain.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Spain/materials/models/htconfigs/flags/spain/spain.vtf -------------------------------------------------------------------------------- /Flags/Spain/models/htconfigs/flags/spain.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Spain/models/htconfigs/flags/spain.dx90.vtx -------------------------------------------------------------------------------- /Flags/Spain/models/htconfigs/flags/spain.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Spain/models/htconfigs/flags/spain.mdl -------------------------------------------------------------------------------- /Flags/Spain/models/htconfigs/flags/spain.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Spain/models/htconfigs/flags/spain.phy -------------------------------------------------------------------------------- /Flags/Spain/models/htconfigs/flags/spain.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Spain/models/htconfigs/flags/spain.vvd -------------------------------------------------------------------------------- /Flags/Spain/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/Spain/paths.txt -------------------------------------------------------------------------------- /Flags/United Kingdom/materials/models/htconfigs/flags/uk/uk.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United Kingdom/materials/models/htconfigs/flags/uk/uk.vmt -------------------------------------------------------------------------------- /Flags/United Kingdom/materials/models/htconfigs/flags/uk/uk.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United Kingdom/materials/models/htconfigs/flags/uk/uk.vtf -------------------------------------------------------------------------------- /Flags/United Kingdom/models/htconfigs/flags/uk.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United Kingdom/models/htconfigs/flags/uk.dx90.vtx -------------------------------------------------------------------------------- /Flags/United Kingdom/models/htconfigs/flags/uk.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United Kingdom/models/htconfigs/flags/uk.mdl -------------------------------------------------------------------------------- /Flags/United Kingdom/models/htconfigs/flags/uk.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United Kingdom/models/htconfigs/flags/uk.phy -------------------------------------------------------------------------------- /Flags/United Kingdom/models/htconfigs/flags/uk.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United Kingdom/models/htconfigs/flags/uk.vvd -------------------------------------------------------------------------------- /Flags/United Kingdom/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United Kingdom/paths.txt -------------------------------------------------------------------------------- /Flags/United States of America/materials/models/htconfigs/flags/usa/usa.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United States of America/materials/models/htconfigs/flags/usa/usa.vmt -------------------------------------------------------------------------------- /Flags/United States of America/materials/models/htconfigs/flags/usa/usa.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United States of America/materials/models/htconfigs/flags/usa/usa.vtf -------------------------------------------------------------------------------- /Flags/United States of America/materials/models/htconfigs/flags/usa/usa_blue.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United States of America/materials/models/htconfigs/flags/usa/usa_blue.vmt -------------------------------------------------------------------------------- /Flags/United States of America/models/htconfigs/flags/usa.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United States of America/models/htconfigs/flags/usa.dx90.vtx -------------------------------------------------------------------------------- /Flags/United States of America/models/htconfigs/flags/usa.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United States of America/models/htconfigs/flags/usa.mdl -------------------------------------------------------------------------------- /Flags/United States of America/models/htconfigs/flags/usa.phy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United States of America/models/htconfigs/flags/usa.phy -------------------------------------------------------------------------------- /Flags/United States of America/models/htconfigs/flags/usa.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United States of America/models/htconfigs/flags/usa.vvd -------------------------------------------------------------------------------- /Flags/United States of America/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Flags/United States of America/paths.txt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/Thunders.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/Thunders.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/Thunders.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/Thunders.vtf -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye.vtf -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye1.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye1.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye1_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye1_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye2.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye2.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye2_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye2_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye3.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye3.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye3_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye3_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye4.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye4.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye4_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye4_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye5.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye5.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye5_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye5_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye6.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye6.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye6_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye6_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye7.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye7.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye7_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye7_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye_Shiny.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/ThundersEye_Shiny.vtf -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/Thunders_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/Thunders_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/Thunders_Shiny.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/materials/models/pets/pokemon/jolteon/Thunders_Shiny.vtf -------------------------------------------------------------------------------- /Pokémon/Jolteon/models/pets/pokemon/jolteon.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/models/pets/pokemon/jolteon.dx90.vtx -------------------------------------------------------------------------------- /Pokémon/Jolteon/models/pets/pokemon/jolteon.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/models/pets/pokemon/jolteon.mdl -------------------------------------------------------------------------------- /Pokémon/Jolteon/models/pets/pokemon/jolteon.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/models/pets/pokemon/jolteon.vvd -------------------------------------------------------------------------------- /Pokémon/Jolteon/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Jolteon/paths.txt -------------------------------------------------------------------------------- /Pokémon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/README.md -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky.vtf -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye.vtf -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye1.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye1.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye1_Illum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye1_Illum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye1_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye1_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye1_ShinyIllum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye1_ShinyIllum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye2.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye2.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye2_Illum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye2_Illum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye2_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye2_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye2_ShinyIllum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye2_ShinyIllum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye3.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye3.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye3_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye3_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye4.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye4.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye4_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye4_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye5.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye5.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye5_Illum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye5_Illum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye5_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye5_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye5_ShinyIllum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye5_ShinyIllum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye6.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye6.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye6_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye6_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye7.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye7.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye7_Illum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye7_Illum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye7_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye7_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye7_ShinyIllum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye7_ShinyIllum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye8.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye8.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye8_Illum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye8_Illum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye8_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye8_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye8_ShinyIllum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye8_ShinyIllum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye_Illum.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye_Illum.vtf -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye_Shiny.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye_Shiny.vtf -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye_ShinyIllum.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyEye_ShinyIllum.vtf -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth.vtf -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth1.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth1.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth1_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth1_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth2.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth2.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth2_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth2_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth3.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth3.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth3_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth3_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth4.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth4.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth4_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth4_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth_Shiny.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/BlackyMouth_Shiny.vtf -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_Illum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_Illum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_Illum.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_Illum.vtf -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_Shiny.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_Shiny.vtf -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_ShinyIllum.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_ShinyIllum.vmt -------------------------------------------------------------------------------- /Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_ShinyIllum.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/materials/models/htconfigs/pets/pokemon/umbreon/Blacky_ShinyIllum.vtf -------------------------------------------------------------------------------- /Pokémon/Umbreon/models/htconfigs/pets/pokemon/umbreon.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/models/htconfigs/pets/pokemon/umbreon.dx90.vtx -------------------------------------------------------------------------------- /Pokémon/Umbreon/models/htconfigs/pets/pokemon/umbreon.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/models/htconfigs/pets/pokemon/umbreon.mdl -------------------------------------------------------------------------------- /Pokémon/Umbreon/models/htconfigs/pets/pokemon/umbreon.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/models/htconfigs/pets/pokemon/umbreon.vvd -------------------------------------------------------------------------------- /Pokémon/Umbreon/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Umbreon/paths.txt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/Showers.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/Showers.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/Showers.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/Showers.vtf -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye.vtf -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye1.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye1.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye1_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye1_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye2.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye2.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye2_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye2_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye3.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye3.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye3_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye3_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye4.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye4.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye4_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye4_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye5.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye5.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye5_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye5_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye6.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye6.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye6_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye6_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye7.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye7.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye7_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye7_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye_Shiny.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersEye_Shiny.vtf -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersFillet.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersFillet.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersFillet.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersFillet.vtf -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersFillet_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersFillet_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersFillet_Shiny.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersFillet_Shiny.vtf -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth.vtf -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth1.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth1.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth1_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth1_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth2.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth2.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth2_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth2_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth3.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth3.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth3_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth3_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth4.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth4.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth4_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth4_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth_Shiny.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/ShowersMouth_Shiny.vtf -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/Showers_Shiny.vmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/Showers_Shiny.vmt -------------------------------------------------------------------------------- /Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/Showers_Shiny.vtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/materials/models/pets/pokemon/vaporeon/Showers_Shiny.vtf -------------------------------------------------------------------------------- /Pokémon/Vaporeon/models/pets/pokemon/vaporeon.dx90.vtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/models/pets/pokemon/vaporeon.dx90.vtx -------------------------------------------------------------------------------- /Pokémon/Vaporeon/models/pets/pokemon/vaporeon.mdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/models/pets/pokemon/vaporeon.mdl -------------------------------------------------------------------------------- /Pokémon/Vaporeon/models/pets/pokemon/vaporeon.vvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/models/pets/pokemon/vaporeon.vvd -------------------------------------------------------------------------------- /Pokémon/Vaporeon/paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/Pokémon/Vaporeon/paths.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luis-rei97/CS-GO-Ported-Models/HEAD/README.md --------------------------------------------------------------------------------