2025-07-30 21:52:26 +08:00
import { Config18x , GirlDetailInfo , GirlInfo , Theme } from "db://assets/Scripts/Main/Config/Config18x" ;
import Category = Config18x . Category ;
import PicType = Config18x . PicType ;
import ImageState = Config18x . ImageState ;
export interface Character {
id : number ;
name : string ;
age : number ;
description : string ;
}
export const GirlsData : GirlInfo [] =
[
{
id : 10001 ,
2025-08-01 18:28:36 +08:00
name : "Anaya Kapoor" ,
2025-07-30 21:52:26 +08:00
age : 29 ,
category : Category.shunv ,
2025-08-01 18:28:36 +08:00
tag : [ "Hot" , "Horny" ],
2025-07-30 21:52:26 +08:00
priceType : Config18x.PriceType.Free ,
2025-08-01 18:28:36 +08:00
pic : { picType : PicType.LocalImage , url : "Image/Girls/10001/Avatar/10001_avatar" , imageState : ImageState.Release },
2025-07-30 21:52:26 +08:00
starCount : 5
},
{
id : 10002 ,
2025-08-01 18:28:36 +08:00
name : "Meher Joshi" ,
age : 26 ,
2025-07-30 21:52:26 +08:00
category : Category.shunv ,
2025-08-01 18:28:36 +08:00
tag : [ "Earth-tone linens" , "handcrafted jewelry" ],
2025-07-30 21:52:26 +08:00
priceType : Config18x.PriceType.Try ,
2025-08-01 18:28:36 +08:00
pic : { picType : PicType.LocalImage , url : "Image/Girls/10002/Avatar/10002_avatar" , imageState : ImageState.Release },
2025-07-30 21:52:26 +08:00
starCount : 4
},
{
id : 10003 ,
2025-08-01 18:28:36 +08:00
name : "Sana Reddy" ,
age : 29 ,
2025-07-30 21:52:26 +08:00
category : Category.shunv ,
2025-08-01 18:28:36 +08:00
tag : [ " Singer-Songwriter" , "Dancer" ],
2025-07-30 21:52:26 +08:00
priceType : Config18x.PriceType.Coin ,
2025-08-01 18:28:36 +08:00
pic : { picType : PicType.LocalImage , url : "Image/Girls/10003/Avatar/10003_avatar" , imageState : ImageState.Release },
2025-07-30 21:52:26 +08:00
starCount : 3
}
]
export const girlDetailInfo :GirlDetailInfo [] = [
{
baseInfo :GirlsData [ 0 ],
2025-08-01 18:28:36 +08:00
detailDesc : "🌸 Hi, I'm Anaya Kapoor, a 24-year-old dreamer from Mumbai. I blend tradition with trend — from vibrant saris to sleek streetwear, fashion is how I express my story.\n" +
"Coffee lover ☕ | Dancer 💃 | Proud Desi ✨\n" +
"Be your own kind of beautiful." ,
pics : [
{ picType :PicType.LocalGif , url : "Image/Girls/10001/DescImg/10001_video" , imageState :ImageState.Release },
{ picType :PicType.LocalImage , url : "Image/Girls/10001/DetailImg/10001_1" , imageState :ImageState.Release },
{ picType :PicType.LocalImage , url : "Image/Girls/10001/DetailImg/10001_2" , imageState :ImageState.Lock },
{ picType :PicType.LocalImage , url : "Image/Girls/10001/DetailImg/10001_3" , imageState :ImageState.UnKnown }
]
2025-07-30 21:52:26 +08:00
},
{
baseInfo :GirlsData [ 1 ],
2025-08-01 18:28:36 +08:00
detailDesc : "I’ m Meher Joshi, a 26-year-old architect passionate about green " +
"design and timeless spaces. Whether I’ m sketching under a banyan tree or supervising a modern villa in Goa," +
" I find inspiration in nature and culture." ,
pics : [{ picType :PicType.LocalGif , url : "Image/Girls/10002/DescImg/10002_chatBg" , imageState :ImageState.Release },
{ picType :PicType.LocalImage , url : "Image/Girls/10002/DetailImg/10002_1" , imageState :ImageState.Release },
{ picType :PicType.LocalImage , url : "Image/Girls/10002/DetailImg/10002_2" , imageState :ImageState.Release },
{ picType :PicType.LocalImage , url : "Image/Girls/10002/DetailImg/10002_3" , imageState :ImageState.Release }]
2025-07-30 21:52:26 +08:00
},
{
baseInfo :GirlsData [ 2 ],
2025-08-01 18:28:36 +08:00
detailDesc : "I'm Sana Reddy, India’ s rising pop rebel. I sing in Telugu, " +
"Hindi, and English — because music has no language, just energy. " +
"Off stage, I’ m chill and goofy. On stage? I’ m a storm." ,
pics : [{ picType :PicType.LocalGif , url : "Image/Girls/10003/DescImg/10003_chatBg" , imageState :ImageState.Release },
{ picType :PicType.LocalImage , url : "Image/Girls/10003/DetailImg/10003_1" , imageState :ImageState.Release },
{ picType :PicType.LocalImage , url : "Image/Girls/10003/DetailImg/10003_2" , imageState :ImageState.Release },
{ picType :PicType.LocalImage , url : "Image/Girls/10003/DetailImg/10003_3" , imageState :ImageState.Release }]
2025-07-30 21:52:26 +08:00
},
]
export const themes : Theme [] = [
{
2025-08-01 18:28:36 +08:00
themeId : 1001 ,
2025-07-30 21:52:26 +08:00
name : "熟女" ,
isRelease : true ,
pic : {
picType : PicType.LocalImage ,
imageState : ImageState.Release ,
2025-08-01 18:28:36 +08:00
url : "Image/Theme/1001"
2025-07-30 21:52:26 +08:00
}
},
{
2025-08-01 18:28:36 +08:00
themeId : 1002 ,
2025-07-30 21:52:26 +08:00
name : "18岁" ,
isRelease : false ,
pic : {
picType : PicType.LocalImage ,
imageState : ImageState.Lock ,
2025-08-01 18:28:36 +08:00
url : "Image/Theme/1002"
2025-07-30 21:52:26 +08:00
}
},
{
2025-08-01 18:28:36 +08:00
themeId : 1003 ,
2025-07-30 21:52:26 +08:00
name : "辣妈" ,
isRelease : false ,
pic : {
picType : PicType.LocalImage ,
imageState : ImageState.Lock ,
2025-08-01 18:28:36 +08:00
url : "Image/Theme/1003"
2025-07-30 21:52:26 +08:00
}
},
{
2025-08-01 18:28:36 +08:00
themeId : 1004 ,
2025-07-30 21:52:26 +08:00
name : "捆绑" ,
isRelease : false ,
pic : {
picType : PicType.LocalImage ,
imageState : ImageState.Lock ,
2025-08-01 18:28:36 +08:00
url : "Image/Theme/1004"
2025-07-30 21:52:26 +08:00
}
},
{
2025-08-01 18:28:36 +08:00
themeId : 1005 ,
2025-07-30 21:52:26 +08:00
name : "公众野战" ,
isRelease : false ,
pic : {
picType : PicType.LocalImage ,
imageState : ImageState.Lock ,
2025-08-01 18:28:36 +08:00
url : "Image/Theme/1005"
2025-07-30 21:52:26 +08:00
}
},
{
2025-08-01 18:28:36 +08:00
themeId : 1006 ,
2025-07-30 21:52:26 +08:00
name : "卡通" ,
isRelease : false ,
pic : {
picType : PicType.LocalImage ,
imageState : ImageState.Lock ,
2025-08-01 18:28:36 +08:00
url : "Image/Theme/1006"
2025-07-30 21:52:26 +08:00
}
}
]