Welcome to 3rd Coast Cards. We are located in Katy, TX (1-10W Westgreen exit...on Kingsland...right across from Taylor High School (about 20 from downtown Houston). We have been in business for 16+ years...7 in the Katy area. Our shop is 4,750 sq. feet and can comfortably seat 200ish for tournament play.
Our business hours are:
Monday-Thursday 10:00AM-midnight
Friday 10:00AM-2AM
Saturday 10:00AM-2:00AM
Sunday noon-8:00
Tournament schedule:
Monday-Thursday $10 TEAM DRAFTS
Tuesday Pokemon 6:00
Wednesday 7:30 Standard constructed $5
Thursday 7:00 World of Warcraft
Friday 7:30 Magic the Gathering Tournament (type 2 constructed)
Saturday 1:00 Yugioh Tournament
Saturday 7:30 Magic the Gathering Booster draft
All other days are open to whatever gaming events you want us to host.
Find us located here!
var Demo = {
// HTML Nodes
mapContainer: document.getElementById('map-container'),
dirContainer: document.getElementById('dir-container'),
fromInput: document.getElementById('from-input'),
toInput: document.getElementById('to-input'),
travelModeInput: 'driving',
unitInput:'imperial',
// API Objects
dirService: new google.maps.DirectionsService(),
dirRenderer: new google.maps.DirectionsRenderer(),
map: null,
showDirections: function(dirResult, dirStatus) {
if (dirStatus != google.maps.DirectionsStatus.OK) {
alert('Directions failed: ' + dirStatus);
return;
}
// Show directions
Demo.dirRenderer.setMap(Demo.map);
Demo.dirRenderer.setPanel(Demo.dirContainer);
Demo.dirRenderer.setDirections(dirResult);
},
getSelectedTravelMode: function() {
var value = google.maps.DirectionsTravelMode.DRIVING;
return value;
},
getSelectedUnitSystem: function() {
return google.maps.DirectionsUnitSystem.IMPERIAL;
},
getDirections: function() {
var fromStr = Demo.fromInput.value;
var toStr = Demo.toInput.value;
var dirRequest = {
origin: fromStr,
destination: toStr,
travelMode: Demo.getSelectedTravelMode(),
unitSystem: Demo.getSelectedUnitSystem(),
provideRouteAlternatives: true
};
Demo.dirService.route(dirRequest, Demo.showDirections);
},
init: function() {
var latLng = new google.maps.LatLng(29.775195, -95.734133);
Demo.map = new google.maps.Map(Demo.mapContainer, {
zoom: 13,
center: latLng,
mapTypeId: google.maps.MapTypeId.ROADMAP
});
// Show directions onload
// Demo.getDirections();
}
};
// Onload handler to fire off the app.
google.maps.event.addDomListener(window, 'load', Demo.init);